# HG changeset patch # User alex # Date 1038250285 0 # Node ID 0e0a43761b494c7c23660e4c95fa285ed02ad4b3 # Parent f7d0ac8874551875140d3d053db83cb4e84dd402 fixed WaitForMultipleObjects and FindFile diff -r f7d0ac887455 -r 0e0a43761b49 loader/win32.c --- a/loader/win32.c Mon Nov 25 18:18:45 2002 +0000 +++ b/loader/win32.c Mon Nov 25 18:51:25 2002 +0000 @@ -829,7 +829,7 @@ object = objects[i]; ret = expWaitForSingleObject(object, duration); if (WaitAll) - dprintf("suck...\n"); + dbgprintf("WaitAll flag not yet supported...\n"); else return ret; } @@ -3397,8 +3397,12 @@ if(strstr(cs1, "QuickTimeEssentials.qtx")) { int result; - char* tmp="/root/.wine/fake_windows/Windows/System/QuickTime/QuickTimeEssentials.qtx"; + char* tmp=(char*)malloc(strlen(def_path)+50); + strcpy(tmp, def_path); + strcat(tmp, "/"); + strcat(tmp, "QuickTimeEssentials.qtx"); result=open(tmp, O_RDONLY); + free(tmp); return result; } #endif