/* * Win32 miscellaneous functions * * Copyright 1995 Thomas Sandford (tdgsandf@prds-grn.demon.co.uk) */ /* Misc. new functions - they should be moved into appropriate files at a later date. */ #include #include "windows.h" #include "winerror.h" #include "stddebug.h" #include "debug.h" /**************************************************************************** * UTRegister (KERNEL32.697) */ BOOL32 WINAPI UTRegister(HMODULE32 hModule, LPSTR lpsz16BITDLL, LPSTR lpszInitName, LPSTR lpszProcName, /*UT32PROC*/ LPVOID *ppfn32Thunk, /*FARPROC*/ LPVOID pfnUT32CallBack, LPVOID lpBuff) { fprintf(stdnimp, "UTRegister Stub called!\n"); return TRUE; } /**************************************************************************** * UTUnRegister (KERNEL32.698) */ BOOL32 WINAPI UTUnRegister(HMODULE32 hModule) { fprintf(stdnimp, "UTUnRegister Stub called!\n"); return TRUE; } /**************************************************************************** * QueryPerformanceCounter (KERNEL32.564) */ BOOL32 WINAPI QueryPerformanceCounter(LPLARGE_INTEGER counter) { /* FIXME: don't know what are good values */ counter->LowPart = 0; counter->HighPart = 0; /* FIXME: Set appropriate error */ return FALSE; } HANDLE32 WINAPI FindFirstChangeNotification32A(LPCSTR lpPathName,BOOL32 bWatchSubtree,DWORD dwNotifyFilter) { fprintf(stderr,"FindFirstChangeNotification(%s,%d,%08lx),stub\n", lpPathName,bWatchSubtree,dwNotifyFilter ); return 0xcafebabe; } BOOL32 WINAPI FindNextChangeNotification(HANDLE32 fcnhandle) { fprintf(stderr,"FindNextChangeNotification(%08x),stub!\n",fcnhandle); return FALSE; } /**************************************************************************** * QueryPerformanceFrequency (KERNEL32.565) */ BOOL32 WINAPI QueryPerformanceFrequency(LPLARGE_INTEGER frequency) { /* FIXME: don't know what are good values */ frequency->LowPart = 0; frequency->HighPart = 0; /* FIXME: Set appropriate error */ return FALSE; } /**************************************************************************** * DeviceIoControl (KERNEL32.188) */ BOOL32 WINAPI DeviceIoControl(HANDLE32 hDevice, DWORD dwIoControlCode, LPVOID lpvlnBuffer, DWORD cblnBuffer, LPVOID lpvOutBuffer, DWORD cbOutBuffer, LPDWORD lpcbBytesReturned, LPOVERLAPPED lpoPverlapped) { fprintf(stdnimp, "DeviceIoControl Stub called!\n"); /* FIXME: Set appropriate error */ return FALSE; }