mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
9 lines
284 B
C
9 lines
284 B
C
|
/*
|
||
|
* Definitions for inter-win32-dll snooping
|
||
|
*/
|
||
|
#ifndef __WINE_SNOOP_H
|
||
|
#define __WINE_SNOOP_H
|
||
|
extern void SNOOP_RegisterDLL(HMODULE32 hmod,LPCSTR name,DWORD nrofordinals);
|
||
|
extern FARPROC32 SNOOP_GetProcAddress32(HMODULE32 hmod,LPCSTR name,DWORD ordinal,FARPROC32 origfun);
|
||
|
#endif
|