File: dde.h

package info (click to toggle)
wine 0.0.980315-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 10,136 kB
  • ctags: 26,112
  • sloc: ansic: 156,310; makefile: 1,160; yacc: 807; perl: 655; lex: 555; sh: 304
file content (61 lines) | stat: -rw-r--r-- 1,658 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*****************************************************************************
 * Copyright 1995, Technion, Israel Institute of Technology
 * Electrical Eng, Software Lab.
 * Author:    Michael Veksler.
 ***************************************************************************
 * File:      dde.h
 * Purpose:   dde declarations
 *
 *****************************************************************************
 */
#ifndef __WINE_DDE_H
#define __WINE_DDE_H

#include "wintypes.h"
#include "dde_proc.h"

#define WM_DDE_INITIATE   0x3E0
#define WM_DDE_TERMINATE  0x3E1
#define WM_DDE_ADVISE	  0x3E2
#define WM_DDE_UNADVISE   0x3E3
#define WM_DDE_ACK	  0x3E4
#define WM_DDE_DATA	  0x3E5
#define WM_DDE_REQUEST	  0x3E6
#define WM_DDE_POKE	  0x3E7
#define WM_DDE_EXECUTE	  0x3E8
#define WM_DDE_LAST	  WM_DDE_EXECUTE
#define WM_DDE_FIRST	  WM_DDE_INITIATE

/* DDEACK: wStatus in WM_DDE_ACK message */
struct tagDDEACK
{
    WORD bAppReturnCode:8, reserved:6, fBusy:1, fAck:1;
};
typedef struct tagDDEACK DDEACK;

/* DDEDATA: hData in WM_DDE_DATA message */
struct tagDDEDATA
{
    WORD unused:12, fResponse:1, fRelease:1, reserved:1, fAckReq:1,
         cfFormat:16;
    BYTE Value[1];		/* undetermined array */
};
typedef struct tagDDEDATA DDEDATA;


/* DDEADVISE: hOptions in WM_DDE_ADVISE message */
struct tagDDEADVISE
{
    WORD reserved:14, fDeferUpd:1, fAckReq:1, cfFormat:16;
};
typedef struct tagDDEADVISE DDEADVISE;

/* DDEPOKE: hData in WM_DDE_POKE message. */
struct tagDDEPOKE
{
    WORD unused:13, fRelease:1, fReserved:2, cfFormat:16;
    BYTE Value[1];   	/* undetermined array */
};
typedef struct tagDDEPOKE DDEPOKE;

#endif /* __WINE_DDE_H */