kernel32/tests: Fix tests on win9x.
This commit is contained in:
parent
c3537c4086
commit
d3c4e3d4a7
|
@ -63,7 +63,7 @@ static int init(void)
|
||||||
int argc;
|
int argc;
|
||||||
char** argv;
|
char** argv;
|
||||||
HANDLE ev1, ev2, ev3, hThread;
|
HANDLE ev1, ev2, ev3, hThread;
|
||||||
DWORD w;
|
DWORD w, tid;
|
||||||
|
|
||||||
argc = winetest_get_mainargs( &argv );
|
argc = winetest_get_mainargs( &argv );
|
||||||
strcpy(selfname, argv[0]);
|
strcpy(selfname, argv[0]);
|
||||||
|
@ -78,7 +78,7 @@ static int init(void)
|
||||||
ev3 = CreateEvent(NULL, FALSE, FALSE, NULL);
|
ev3 = CreateEvent(NULL, FALSE, FALSE, NULL);
|
||||||
|
|
||||||
if (ev3 == NULL) ExitProcess(WAIT_ABANDONED);
|
if (ev3 == NULL) ExitProcess(WAIT_ABANDONED);
|
||||||
hThread = CreateThread(NULL, 0, sub_thread, ev3, 0, NULL);
|
hThread = CreateThread(NULL, 0, sub_thread, ev3, 0, &tid);
|
||||||
if (hThread == NULL) ExitProcess(WAIT_ABANDONED);
|
if (hThread == NULL) ExitProcess(WAIT_ABANDONED);
|
||||||
if (!LoadLibraryA("shell32.dll")) ExitProcess(WAIT_ABANDONED);
|
if (!LoadLibraryA("shell32.dll")) ExitProcess(WAIT_ABANDONED);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue