Fixed alignment of values/addresses on 64bit systems.

This commit is contained in:
Joachim Bauch
2016-09-19 23:59:33 +02:00
parent de5dbce770
commit 03cd7c91d9
3 changed files with 111 additions and 8 deletions
+17
View File
@@ -0,0 +1,17 @@
#define WIN32_LEAN_AND_MEAN
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
#include <windows.h>
extern BOOL MemoryModuleTestsuite();
int main(int argc, char* argv[])
{
if (!MemoryModuleTestsuite()) {
return 1;
}
return 0;
}