Commit 1be44ab2 authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju Committed by Alexandre Julliard

vdmdbg: Add stub for VDMEnumProcessWOW.

parent d93ad022
......@@ -35,6 +35,15 @@ INT WINAPI VDMEnumTaskWOW(DWORD dwProcessId, TASKENUMPROC fp, LPARAM lparam)
}
/***********************************************************************
* VDMEnumProcessWOW (VDMDBG.@)
*/
INT WINAPI VDMEnumProcessWOW(PROCESSENUMPROC fp, LPARAM lparam)
{
FIXME("%p: stub!\n", fp);
return 0;
}
/***********************************************************************
* DllMain (VDMDBG.@)
*/
BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
......
......@@ -2,7 +2,7 @@
@ stub VDMBreakThread
@ stub VDMDetectWOW
@ stub VDMEnumProcessWOW
@ stdcall VDMEnumProcessWOW(ptr long)
@ stdcall VDMEnumTaskWOW(long ptr long)
@ stub VDMEnumTaskWOWEx
@ stub VDMGetModuleSelector
......
......@@ -25,9 +25,13 @@
extern "C" {
#endif /* defined(__cplusplus) */
typedef BOOL (WINAPI *PROCESSENUMPROC)(DWORD, DWORD, LPARAM);
typedef BOOL (WINAPI *TASKENUMPROC)(DWORD, WORD, WORD, LPARAM);
typedef BOOL (WINAPI *TASKENUMPROCEX)(DWORD, WORD, WORD, PSZ, PSZ, LPARAM);
INT WINAPI VDMEnumProcessWOW(PROCESSENUMPROC, LPARAM);
INT WINAPI VDMEnumTaskWOW(DWORD, TASKENUMPROC, LPARAM);
INT WINAPI VDMEnumTaskWOWEx(DWORD, TASKENUMPROCEX, LPARAM);
#ifdef __cplusplus
} /* extern "C" */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment