source: trunk/include/spy.h@ 215

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

Spy and window message changes

File size: 585 bytes
RevLine 
[215]1/* $Id: spy.h,v 1.4 1999-06-26 13:21:53 sandervl Exp $ */
[195]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();
25
[208]26#ifdef DEBUG
[215]27BOOL PostSpyMessage(HWND hwnd, ULONG Msg, ULONG wParam, ULONG lParam);
[208]28#else
29#define PostSpyMessage(a,b,c,d) FALSE
30#endif
31
[195]32#endif //__SPY_H__
Note: See TracBrowser for help on using the repository browser.