Added macros to header file for easier function calling.
[wine/multimedia.git] / include / snoop.h
blobe4714c47291aa1cda6ddfb02911a9d1c7485f93b
1 /*
2 * Definitions for inter-dll snooping
3 */
4 #ifndef __WINE_SNOOP_H
5 #define __WINE_SNOOP_H
7 #include "module.h"
9 extern void SNOOP_RegisterDLL(HMODULE32,LPCSTR,DWORD);
10 extern FARPROC32 SNOOP_GetProcAddress32(HMODULE32,LPCSTR,DWORD,FARPROC32);
11 extern void (*fnSNOOP16_RegisterDLL)(NE_MODULE*,LPCSTR);
12 extern FARPROC16 (*fnSNOOP16_GetProcAddress16)(HMODULE16,DWORD,FARPROC16);
13 extern void SNOOP16_Init();
14 extern int SNOOP_ShowDebugmsgSnoop(const char *dll,int ord,const char *fname);
15 #endif