source: trunk/include/spy.h@ 195

Last change on this file since 195 was 195, checked in by sandervl, 26 years ago

* empty log message *

File size: 520 bytes
Line 
1/* $Id: spy.h,v 1.1 1999-06-25 21:34:49 sandervl Exp $ */
2
3/*
4 *
5 * Project Odin Software License can be found in LICENSE.TXT
6 *
7 */
8#ifndef __SPY_H__
9#define __SPY_H__
10
11#define TIMEOUT_LEN (ULONG)1000
12#define Q_NAME "ODIN32SPY"
13#define Q_SPYMSG_WNDMSG 1
14#define Q_SPYMSG_NEWWND 2
15
16typedef struct _Q_SPYMSG {
17 ULONG hwnd;
18 ULONG Msg;
19 ULONG wParam;
20 ULONG lParam;
21} Q_SPYMSG;
22
23BOOL InitSpyQueue();
24void CloseSpyQueue();
25VOID PostSpyMessage(HWND hwnd, ULONG Msg, ULONG wParam, ULONG lParam);
26
27#endif //__SPY_H__
Note: See TracBrowser for help on using the repository browser.