mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
a396029270
standard Windows names.
16 lines
480 B
C
16 lines
480 B
C
/*
|
|
* Definitions for inter-dll snooping
|
|
*/
|
|
#ifndef __WINE_SNOOP_H
|
|
#define __WINE_SNOOP_H
|
|
|
|
#include "module.h"
|
|
|
|
extern void SNOOP_RegisterDLL(HMODULE,LPCSTR,DWORD);
|
|
extern FARPROC SNOOP_GetProcAddress(HMODULE,LPCSTR,DWORD,FARPROC);
|
|
extern void (*fnSNOOP16_RegisterDLL)(NE_MODULE*,LPCSTR);
|
|
extern FARPROC16 (*fnSNOOP16_GetProcAddress16)(HMODULE16,DWORD,FARPROC16);
|
|
extern void SNOOP16_Init();
|
|
extern int SNOOP_ShowDebugmsgSnoop(const char *dll,int ord,const char *fname);
|
|
#endif
|