OSDN Git Service

* NEWS: Add and adjust release notes for 4.0.
[mingw/mingw-org-wsl.git] / include / dde.h
1 /**
2  * @file dde.h
3  * Copyright 2012, 2013 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _DDE_H
25 #define _DDE_H
26 #pragma GCC system_header
27 #include <_mingw.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 #define WM_DDE_FIRST    0x03E0
33 #define WM_DDE_INITIATE (WM_DDE_FIRST)
34 #define WM_DDE_TERMINATE        (WM_DDE_FIRST+1)
35 #define WM_DDE_ADVISE   (WM_DDE_FIRST+2)
36 #define WM_DDE_UNADVISE (WM_DDE_FIRST+3)
37 #define WM_DDE_ACK      (WM_DDE_FIRST+4)
38 #define WM_DDE_DATA     (WM_DDE_FIRST+5)
39 #define WM_DDE_REQUEST  (WM_DDE_FIRST+6)
40 #define WM_DDE_POKE     (WM_DDE_FIRST+7)
41 #define WM_DDE_EXECUTE  (WM_DDE_FIRST+8)
42 #define WM_DDE_LAST     (WM_DDE_FIRST+8)
43
44 #ifndef RC_INVOKED
45 typedef struct {
46         unsigned short bAppReturnCode:8,reserved:6,fBusy:1,fAck:1;
47 } DDEACK;
48 typedef struct {
49         unsigned short reserved:14,fDeferUpd:1,fAckReq:1;
50         short cfFormat;
51 } DDEADVISE;
52 typedef struct {
53         unsigned short unused:12,fResponse:1,fRelease:1,reserved:1,fAckReq:1;
54         short cfFormat;
55         BYTE Value[1];
56 } DDEDATA;
57 typedef struct {
58         unsigned short unused:13,fRelease:1,fReserved:2;
59         short cfFormat;
60         BYTE  Value[1];
61 } DDEPOKE;
62 typedef struct {
63         unsigned short unused:13,
64                  fRelease:1,
65                  fDeferUpd:1,
66          fAckReq:1;
67     short    cfFormat;
68 } DDELN;
69
70 typedef struct {
71         unsigned short unused:12,fAck:1,fRelease:1,fReserved:1,fAckReq:1;
72     short cfFormat;
73     BYTE rgb[1];
74 } DDEUP;
75 BOOL WINAPI DdeSetQualityOfService(HWND,const SECURITY_QUALITY_OF_SERVICE*,PSECURITY_QUALITY_OF_SERVICE);
76 BOOL WINAPI ImpersonateDdeClientWindow(HWND,HWND);
77 LPARAM WINAPI PackDDElParam(UINT,UINT_PTR,UINT_PTR); 
78 BOOL WINAPI UnpackDDElParam(UINT,LPARAM,PUINT_PTR,PUINT_PTR); 
79 BOOL WINAPI FreeDDElParam(UINT,LPARAM); 
80 LPARAM WINAPI ReuseDDElParam(LPARAM,UINT,UINT,UINT_PTR,UINT_PTR); 
81 #endif
82
83 #ifdef __cplusplus
84 }
85 #endif
86 #endif