Subversion Repositories DevTools

Rev

Rev 2877 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2877 dpurdie 1
/*++ BUILD Version: 0000     Increment this if a change has global effects
2
 
3
Copyright (c) 1990-1997  Microsoft Corporation
4
 
5
Module Name:
6
 
7
    dde.rh
8
 
9
Abstract:
10
 
11
    This module defines the 32-Bit Windows resource codes from dde.h.
12
 
13
Revision History:
14
 
15
--*/
16
 
17
/* DDE window messages */
18
 
19
#define WM_DDE_FIRST	    0x03E0
20
#define WM_DDE_INITIATE     (WM_DDE_FIRST)
21
#define WM_DDE_TERMINATE    (WM_DDE_FIRST+1)
22
#define WM_DDE_ADVISE	    (WM_DDE_FIRST+2)
23
#define WM_DDE_UNADVISE     (WM_DDE_FIRST+3)
24
#define WM_DDE_ACK	        (WM_DDE_FIRST+4)
25
#define WM_DDE_DATA	        (WM_DDE_FIRST+5)
26
#define WM_DDE_REQUEST	    (WM_DDE_FIRST+6)
27
#define WM_DDE_POKE	        (WM_DDE_FIRST+7)
28
#define WM_DDE_EXECUTE	    (WM_DDE_FIRST+8)
29
#define WM_DDE_LAST	        (WM_DDE_FIRST+8)
30