mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
c50a1d05de
Removed some now unnecessary function pointers.
14 lines
442 B
C
14 lines
442 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 SNOOP16_RegisterDLL(NE_MODULE*,LPCSTR);
|
|
extern FARPROC16 SNOOP16_GetProcAddress16(HMODULE16,DWORD,FARPROC16);
|
|
extern int SNOOP_ShowDebugmsgSnoop(const char *dll,int ord,const char *fname);
|
|
#endif
|