2 * Win32 miscellaneous functions
4 * Copyright 1995 Thomas Sandford (tdgsandf@prds-grn.demon.co.uk)
7 /* Misc. new functions - they should be moved into appropriate files
16 /***********************************************************************
17 * WinHelpA (USER32.578)
19 BOOL
WIN32_WinHelpA(HWND hWnd
,LPCSTR lpszHelp
,UINT uCommand
, DWORD dwData
)
21 /* Should do parameter conversion here, but WinHelp is not working,
23 return WinHelp(hWnd
,lpszHelp
,uCommand
,dwData
);
26 /****************************************************************************
27 * QueryPerformanceCounter (KERNEL32.415)
30 QueryPerformanceCounter(LPLARGE_INTEGER counter
) {
31 /* FIXME: don't know what are good values */
33 counter
->HighPart
= 0;
38 GetWindowThreadProcessId(HWND32 hwnd
,LPDWORD processid
) {
39 fprintf(stdnimp
,"GetWindowThreadProcessId(%04x,%p),stub\n",hwnd
,processid
);
43 /****************************************************************************
44 * DisableThreadLibraryCalls (KERNEL32.74)
47 DisableThreadLibraryCalls(HMODULE32 hModule
) {
48 /* FIXME: stub for now */
49 fprintf(stdnimp
, "DisableThreadLibraryCalls Stub called!\n");