mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
20 lines
460 B
C
20 lines
460 B
C
|
/*
|
||
|
* Message Logging functions
|
||
|
*/
|
||
|
|
||
|
#ifndef __WINE_SPY_H
|
||
|
#define __WINE_SPY_H
|
||
|
|
||
|
#define SPY_DISPATCHMESSAGE 0x0099
|
||
|
#define SPY_SENDMESSAGE 0x0100
|
||
|
#define SPY_DEFWNDPROC 0x0101
|
||
|
|
||
|
#define SPY_RESULT_OK 0x0000
|
||
|
#define SPY_RESULT_INVALIDHWND 0x0001
|
||
|
|
||
|
extern void EnterSpyMessage( int, HWND, WORD, WORD, LONG);
|
||
|
extern void ExitSpyMessage( int, HWND, WORD, LONG);
|
||
|
extern void SpyInit( void);
|
||
|
|
||
|
#endif /* __WINE_SPY_H */
|