vdmdbg: Add stub for VDMEnumProcessWOW.
This commit is contained in:
parent
d93ad02216
commit
1be44ab2fc
|
@ -34,6 +34,15 @@ INT WINAPI VDMEnumTaskWOW(DWORD dwProcessId, TASKENUMPROC fp, LPARAM lparam)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* VDMEnumProcessWOW (VDMDBG.@)
|
||||||
|
*/
|
||||||
|
INT WINAPI VDMEnumProcessWOW(PROCESSENUMPROC fp, LPARAM lparam)
|
||||||
|
{
|
||||||
|
FIXME("%p: stub!\n", fp);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* DllMain (VDMDBG.@)
|
* DllMain (VDMDBG.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
@ stub VDMBreakThread
|
@ stub VDMBreakThread
|
||||||
@ stub VDMDetectWOW
|
@ stub VDMDetectWOW
|
||||||
@ stub VDMEnumProcessWOW
|
@ stdcall VDMEnumProcessWOW(ptr long)
|
||||||
@ stdcall VDMEnumTaskWOW(long ptr long)
|
@ stdcall VDMEnumTaskWOW(long ptr long)
|
||||||
@ stub VDMEnumTaskWOWEx
|
@ stub VDMEnumTaskWOWEx
|
||||||
@ stub VDMGetModuleSelector
|
@ stub VDMGetModuleSelector
|
||||||
|
|
|
@ -25,9 +25,13 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif /* defined(__cplusplus) */
|
#endif /* defined(__cplusplus) */
|
||||||
|
|
||||||
|
typedef BOOL (WINAPI *PROCESSENUMPROC)(DWORD, DWORD, LPARAM);
|
||||||
typedef BOOL (WINAPI *TASKENUMPROC)(DWORD, WORD, WORD, 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 VDMEnumTaskWOW(DWORD, TASKENUMPROC, LPARAM);
|
||||||
|
INT WINAPI VDMEnumTaskWOWEx(DWORD, TASKENUMPROCEX, LPARAM);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} /* extern "C" */
|
} /* extern "C" */
|
||||||
|
|
Loading…
Reference in New Issue