Added a few more anonymous union definitions.
[wine] / include / dplay.h
1 #ifndef __WINE_DPLAY_H
2 #define __WINE_DPLAY_H
3
4 /* FIXME: GCC doesn't yet support annon structures so some of the structures defined here don't match the sdk exactly.
5  * I've tried to come up with suitably terse names, but this file won't cut it for inclusion into a WineLib app.
6  */
7
8 #include "wine/obj_base.h"
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif /* defined(__cplusplus) */
13
14 #include "pshpack1.h"
15
16 /*****************************************************************************
17  * Predeclare the interfaces
18  */
19 DEFINE_GUID(CLSID_DirectPlay,0xd1eb6d20, 0x8923, 0x11d0, 0x9d, 0x97, 0x0, 0xa0, 0xc9, 0xa, 0x43, 0xcb);
20
21 DEFINE_GUID(IID_IDirectPlay, 0x5454e9a0, 0xdb65, 0x11ce, 0x92, 0x1c, 0x00, 0xaa, 0x00, 0x6c, 0x49, 0x72);
22 typedef struct IDirectPlay IDirectPlay,*LPDIRECTPLAY;
23
24 DEFINE_GUID(IID_IDirectPlay2, 0x2b74f7c0, 0x9154, 0x11cf, 0xa9, 0xcd, 0x0, 0xaa, 0x0, 0x68, 0x86, 0xe3);
25 typedef struct IDirectPlay2 IDirectPlay2,*LPDIRECTPLAY2;
26
27 DEFINE_GUID(IID_IDirectPlay2A,0x9d460580, 0xa822, 0x11cf, 0x96, 0xc, 0x0, 0x80, 0xc7, 0x53, 0x4e, 0x82);
28 typedef struct IDirectPlay2 IDirectPlay2A,*LPDIRECTPLAY2A;
29
30 DEFINE_GUID(IID_IDirectPlay3, 0x133efe40, 0x32dc, 0x11d0, 0x9c, 0xfb, 0x0, 0xa0, 0xc9, 0xa, 0x43, 0xcb);
31 typedef struct IDirectPlay3 IDirectPlay3,*LPDIRECTPLAY3;
32
33 DEFINE_GUID(IID_IDirectPlay3A,0x133efe41, 0x32dc, 0x11d0, 0x9c, 0xfb, 0x0, 0xa0, 0xc9, 0xa, 0x43, 0xcb);
34 typedef struct IDirectPlay3 IDirectPlay3A,*LPDIRECTPLAY3A;
35
36 DEFINE_GUID(IID_IDirectPlay4, 0xab1c530, 0x4745, 0x11d1, 0xa7, 0xa1, 0x0, 0x0, 0xf8, 0x3, 0xab, 0xfc);
37 typedef struct IDirectPlay4 IDirectPlay4,*LPDIRECTPLAY4;
38
39 DEFINE_GUID(IID_IDirectPlay4A,0xab1c531, 0x4745, 0x11d1, 0xa7, 0xa1, 0x0, 0x0, 0xf8, 0x3, 0xab, 0xfc);
40 typedef struct IDirectPlay4 IDirectPlay4A,*LPDIRECTPLAY4A;
41
42
43 /*
44  * GUIDS used by Service Providers shipped with DirectPlay
45  * Use these to identify Service Provider returned by EnumConnections
46  */
47
48 /* GUID for IPX service provider {685BC400-9D2C-11cf-A9CD-00AA006886E3} */
49 DEFINE_GUID(DPSPGUID_IPX, 0x685bc400, 0x9d2c, 0x11cf, 0xa9, 0xcd, 0x0, 0xaa, 0x0, 0x68, 0x86, 0xe3);
50
51 /* GUID for TCP/IP service provider {36E95EE0-8577-11cf-960C-0080C7534E82} */
52 DEFINE_GUID(DPSPGUID_TCPIP, 0x36E95EE0, 0x8577, 0x11cf, 0x96, 0xc, 0x0, 0x80, 0xc7, 0x53, 0x4e, 0x82);
53
54 /* GUID for Serial service provider {0F1D6860-88D9-11cf-9C4E-00A0C905425E} */
55 DEFINE_GUID(DPSPGUID_SERIAL, 0xf1d6860, 0x88d9, 0x11cf, 0x9c, 0x4e, 0x0, 0xa0, 0xc9, 0x5, 0x42, 0x5e);
56
57 /* GUID for Modem service provider {44EAA760-CB68-11cf-9C4E-00A0C905425E} */
58 DEFINE_GUID(DPSPGUID_MODEM, 0x44eaa760, 0xcb68, 0x11cf, 0x9c, 0x4e, 0x0, 0xa0, 0xc9, 0x5, 0x42, 0x5e);
59
60
61 /*****************************************************************************
62  * Miscellaneous
63  */
64
65 /* Return Values for Direct Play */
66 #define _FACDP  0x877
67 #define MAKE_DPHRESULT( code )    MAKE_HRESULT( 1, _FACDP, code )
68
69 #define DP_OK                           S_OK
70 #define DPERR_ALREADYINITIALIZED        MAKE_DPHRESULT(   5 )
71 #define DPERR_ACCESSDENIED              MAKE_DPHRESULT(  10 )
72 #define DPERR_ACTIVEPLAYERS             MAKE_DPHRESULT(  20 )
73 #define DPERR_BUFFERTOOSMALL            MAKE_DPHRESULT(  30 )
74 #define DPERR_CANTADDPLAYER             MAKE_DPHRESULT(  40 )
75 #define DPERR_CANTCREATEGROUP           MAKE_DPHRESULT(  50 )
76 #define DPERR_CANTCREATEPLAYER          MAKE_DPHRESULT(  60 )
77 #define DPERR_CANTCREATESESSION         MAKE_DPHRESULT(  70 )
78 #define DPERR_CAPSNOTAVAILABLEYET       MAKE_DPHRESULT(  80 )
79 #define DPERR_EXCEPTION                 MAKE_DPHRESULT(  90 )
80 #define DPERR_GENERIC                   E_FAIL
81 #define DPERR_INVALIDFLAGS              MAKE_DPHRESULT( 120 )
82 #define DPERR_INVALIDOBJECT             MAKE_DPHRESULT( 130 )
83 #define DPERR_INVALIDPARAM              E_INVALIDARG
84 #define DPERR_INVALIDPARAMS             DPERR_INVALIDPARAM
85 #define DPERR_INVALIDPLAYER             MAKE_DPHRESULT( 150 )
86 #define DPERR_INVALIDGROUP              MAKE_DPHRESULT( 155 )
87 #define DPERR_NOCAPS                    MAKE_DPHRESULT( 160 )
88 #define DPERR_NOCONNECTION              MAKE_DPHRESULT( 170 )
89 #define DPERR_NOMEMORY                  E_OUTOFMEMORY
90 #define DPERR_OUTOFMEMORY               DPERR_NOMEMORY
91 #define DPERR_NOMESSAGES                MAKE_DPHRESULT( 190 )
92 #define DPERR_NONAMESERVERFOUND         MAKE_DPHRESULT( 200 )
93 #define DPERR_NOPLAYERS                 MAKE_DPHRESULT( 210 )
94 #define DPERR_NOSESSIONS                MAKE_DPHRESULT( 220 )
95 #define DPERR_PENDING                   E_PENDING
96 #define DPERR_SENDTOOBIG                MAKE_DPHRESULT( 230 )
97 #define DPERR_TIMEOUT                   MAKE_DPHRESULT( 240 )
98 #define DPERR_UNAVAILABLE               MAKE_DPHRESULT( 250 )
99 #define DPERR_UNSUPPORTED               E_NOTIMPL
100 #define DPERR_BUSY                      MAKE_DPHRESULT( 270 )
101 #define DPERR_USERCANCEL                MAKE_DPHRESULT( 280 )
102 #define DPERR_NOINTERFACE               E_NOINTERFACE
103 #define DPERR_CANNOTCREATESERVER        MAKE_DPHRESULT( 290 )
104 #define DPERR_PLAYERLOST                MAKE_DPHRESULT( 300 )
105 #define DPERR_SESSIONLOST               MAKE_DPHRESULT( 310 )
106 #define DPERR_UNINITIALIZED             MAKE_DPHRESULT( 320 )
107 #define DPERR_NONEWPLAYERS              MAKE_DPHRESULT( 330 )
108 #define DPERR_INVALIDPASSWORD           MAKE_DPHRESULT( 340 )
109 #define DPERR_CONNECTING                MAKE_DPHRESULT( 350 )
110 #define DPERR_CONNECTIONLOST            MAKE_DPHRESULT( 360 )
111 #define DPERR_UNKNOWNMESSAGE            MAKE_DPHRESULT( 370 )
112 #define DPERR_CANCELFAILED              MAKE_DPHRESULT( 380 )
113 #define DPERR_INVALIDPRIORITY           MAKE_DPHRESULT( 390 )
114 #define DPERR_NOTHANDLED                MAKE_DPHRESULT( 400 )
115 #define DPERR_CANCELLED                 MAKE_DPHRESULT( 410 )
116 #define DPERR_ABORTED                   MAKE_DPHRESULT( 420 )
117 #define DPERR_BUFFERTOOLARGE            MAKE_DPHRESULT( 1000 )
118 #define DPERR_CANTCREATEPROCESS         MAKE_DPHRESULT( 1010 )
119 #define DPERR_APPNOTSTARTED             MAKE_DPHRESULT( 1020 )
120 #define DPERR_INVALIDINTERFACE          MAKE_DPHRESULT( 1030 )
121 #define DPERR_NOSERVICEPROVIDER         MAKE_DPHRESULT( 1040 )
122 #define DPERR_UNKNOWNAPPLICATION        MAKE_DPHRESULT( 1050 )
123 #define DPERR_NOTLOBBIED                MAKE_DPHRESULT( 1070 )
124 #define DPERR_SERVICEPROVIDERLOADED     MAKE_DPHRESULT( 1080 )
125 #define DPERR_ALREADYREGISTERED         MAKE_DPHRESULT( 1090 )
126 #define DPERR_NOTREGISTERED             MAKE_DPHRESULT( 1100 )
127 #define DPERR_AUTHENTICATIONFAILED      MAKE_DPHRESULT( 2000 )
128 #define DPERR_CANTLOADSSPI              MAKE_DPHRESULT( 2010 )
129 #define DPERR_ENCRYPTIONFAILED          MAKE_DPHRESULT( 2020 )
130 #define DPERR_SIGNFAILED                MAKE_DPHRESULT( 2030 )
131 #define DPERR_CANTLOADSECURITYPACKAGE   MAKE_DPHRESULT( 2040 )
132 #define DPERR_ENCRYPTIONNOTSUPPORTED    MAKE_DPHRESULT( 2050 )
133 #define DPERR_CANTLOADCAPI              MAKE_DPHRESULT( 2060 )
134 #define DPERR_NOTLOGGEDIN               MAKE_DPHRESULT( 2070 )
135 #define DPERR_LOGONDENIED               MAKE_DPHRESULT( 2080 )
136
137
138 /* DPID - DirectPlay player and group ID */
139 typedef DWORD DPID, *LPDPID;
140
141 /* DPID from whence originate messages - just an ID */
142 #define DPID_SYSMSG             0           /* DPID of system */
143 #define DPID_ALLPLAYERS         0           /* DPID of all players */
144 #define DPID_SERVERPLAYER       1           /* DPID of the server player */
145 #define DPID_UNKNOWN            0xFFFFFFFF  /* Player ID is unknown */
146
147 /*  DPCAPS -  Used to obtain the capabilities of a DirectPlay object */
148 typedef struct tagDPCAPS
149 {
150     DWORD dwSize;               /* Size of structure in bytes */
151     DWORD dwFlags;              
152     DWORD dwMaxBufferSize;      
153     DWORD dwMaxQueueSize;       /* Obsolete. */
154     DWORD dwMaxPlayers;         /* Maximum players/groups (local + remote) */
155     DWORD dwHundredBaud;        /* Bandwidth in 100 bits per second units;
156                                  * i.e. 24 is 2400, 96 is 9600, etc. 
157                                  */
158     DWORD dwLatency;            /* Estimated latency; 0 = unknown */
159     DWORD dwMaxLocalPlayers;    /* Maximum # of locally created players */
160     DWORD dwHeaderLength;       /* Maximum header length in bytes */
161     DWORD dwTimeout;            /* Service provider's suggested timeout value
162                                  * This is how long DirectPlay will wait for
163                                  * responses to system messages
164                                  */
165 } DPCAPS, *LPDPCAPS;
166
167 typedef struct tagDPNAME
168 {
169     DWORD   dwSize;             
170     DWORD   dwFlags;            /* Not used must be 0 */
171
172     union /*playerShortName */      /* Player's Handle? */
173     {                           
174         LPWSTR  lpszShortName;  
175         LPSTR   lpszShortNameA; 
176     }psn;
177
178     union /*playerLongName */       /* Player's formal/real name */
179     {                         
180         LPWSTR  lpszLongName;  
181         LPSTR   lpszLongNameA;  
182     }pln;
183
184 } DPNAME, *LPDPNAME;
185
186 #define DPLONGNAMELEN     52
187 #define DPSHORTNAMELEN    20
188 #define DPSESSIONNAMELEN  32
189 #define DPPASSWORDLEN     16
190 #define DPUSERRESERVED    16
191
192 typedef struct tagDPSESSIONDESC
193 {
194     DWORD   dwSize;
195     GUID    guidSession;
196     DWORD   dwSession;
197     DWORD   dwMaxPlayers;
198     DWORD   dwCurrentPlayers;
199     DWORD   dwFlags;
200     char    szSessionName[ DPSESSIONNAMELEN ];
201     char    szUserField[ DPUSERRESERVED ];
202     DWORD   dwReserved1;
203     char    szPassword[ DPPASSWORDLEN ];
204     DWORD   dwReserved2;
205     DWORD   dwUser1;
206     DWORD   dwUser2;
207     DWORD   dwUser3;
208     DWORD   dwUser4;
209 } DPSESSIONDESC, *LPDPSESSIONDESC;
210
211 typedef struct tagDPSESSIONDESC2
212 {
213     DWORD   dwSize;             
214     DWORD   dwFlags;           
215     GUID    guidInstance;      
216     GUID    guidApplication;   /* GUID of the DP application, GUID_NULL if
217                                 * all applications! */
218                                
219     DWORD   dwMaxPlayers;      
220     DWORD   dwCurrentPlayers;   /* (read only value) */
221
222     union  /* Session name */
223     {                             
224         LPWSTR  lpszSessionName;  
225         LPSTR   lpszSessionNameA; 
226     }sess;
227
228     union  /* Optional password */
229     {                           
230         LPWSTR  lpszPassword;   
231         LPSTR   lpszPasswordA;  
232     }pass;
233
234     DWORD   dwReserved1;       
235     DWORD   dwReserved2;
236
237     DWORD   dwUser1;        /* For use by the application */  
238     DWORD   dwUser2;
239     DWORD   dwUser3;
240     DWORD   dwUser4;
241 } DPSESSIONDESC2, *LPDPSESSIONDESC2;
242 typedef const DPSESSIONDESC2* LPCDPSESSIONDESC2;
243
244 #define DPOPEN_JOIN                     0x00000001
245 #define DPOPEN_CREATE                   0x00000002
246 #define DPOPEN_RETURNSTATUS             DPENUMSESSIONS_RETURNSTATUS
247
248 #define DPSESSION_NEWPLAYERSDISABLED    0x00000001
249 #define DPSESSION_MIGRATEHOST           0x00000004
250 #define DPSESSION_NOMESSAGEID           0x00000008
251 #define DPSESSION_JOINDISABLED          0x00000020
252 #define DPSESSION_KEEPALIVE             0x00000040
253 #define DPSESSION_NODATAMESSAGES        0x00000080
254 #define DPSESSION_SECURESERVER          0x00000100
255 #define DPSESSION_PRIVATE               0x00000200
256 #define DPSESSION_PASSWORDREQUIRED      0x00000400
257 #define DPSESSION_MULTICASTSERVER       0x00000800
258 #define DPSESSION_CLIENTSERVER          0x00001000
259
260 typedef struct tagDPLCONNECTION
261 {
262     DWORD               dwSize;          
263     DWORD               dwFlags;          
264     LPDPSESSIONDESC2    lpSessionDesc;  /* Ptr to session desc to use for connect */  
265     LPDPNAME            lpPlayerName;   /* Ptr to player name structure */
266     GUID                guidSP;         /* GUID of Service Provider to use */ 
267     LPVOID              lpAddress;      /* Ptr to Address of Service Provider to use */
268     DWORD               dwAddressSize;  /* Size of address data */
269 } DPLCONNECTION, *LPDPLCONNECTION;
270
271 /* DPLCONNECTION flags (for dwFlags) */
272 #define DPLCONNECTION_CREATESESSION DPOPEN_CREATE
273 #define DPLCONNECTION_JOINSESSION   DPOPEN_JOIN
274
275 typedef struct tagDPCHAT
276 {
277     DWORD               dwSize;
278     DWORD               dwFlags;
279     union
280     {                          /* Message string */
281         LPWSTR  lpszMessage;   /* Unicode */
282         LPSTR   lpszMessageA;  /* ANSI */
283     }msgstr;
284 } DPCHAT, *LPDPCHAT;
285
286 typedef struct tagDPSECURITYDESC
287 {
288     DWORD dwSize;                   /* Size of structure */
289     DWORD dwFlags;                  /* Not used. Must be zero. */
290     union
291     {                               /* SSPI provider name */
292         LPWSTR  lpszSSPIProvider;   /* Unicode */
293         LPSTR   lpszSSPIProviderA;  /* ANSI */
294     }sspi;
295     union
296     {                               /* CAPI provider name */
297         LPWSTR lpszCAPIProvider;    /* Unicode */
298         LPSTR  lpszCAPIProviderA;   /* ANSI */
299     }capi;
300     DWORD dwCAPIProviderType;       /* Crypto Service Provider type */
301     DWORD dwEncryptionAlgorithm;    /* Encryption Algorithm type */
302 } DPSECURITYDESC, *LPDPSECURITYDESC;
303
304 typedef const DPSECURITYDESC *LPCDPSECURITYDESC;
305
306 typedef struct tagDPCREDENTIALS
307 {
308     DWORD dwSize;               /* Size of structure */
309     DWORD dwFlags;              /* Not used. Must be zero. */
310     union
311     {                           /* User name of the account */
312         LPWSTR  lpszUsername;   /* Unicode */
313         LPSTR   lpszUsernameA;  /* ANSI */
314     }name;
315     union
316     {                           /* Password of the account */
317         LPWSTR  lpszPassword;   /* Unicode */
318         LPSTR   lpszPasswordA;  /* ANSI */
319     }pass;
320     union
321     {                           /* Domain name of the account */
322         LPWSTR  lpszDomain;     /* Unicode */
323         LPSTR   lpszDomainA;    /* ANSI */
324     }domain;
325 } DPCREDENTIALS, *LPDPCREDENTIALS;
326
327 typedef const DPCREDENTIALS *LPCDPCREDENTIALS;
328
329
330
331 typedef BOOL CALLBACK (*LPDPENUMDPCALLBACKW)(
332     LPGUID      lpguidSP,
333     LPWSTR      lpSPName,
334     DWORD       dwMajorVersion,
335     DWORD       dwMinorVersion,
336     LPVOID      lpContext);
337
338 typedef BOOL CALLBACK (*LPDPENUMDPCALLBACKA)(
339     LPGUID      lpguidSP,
340     LPSTR       lpSPName,       /* ptr to str w/ driver description */
341     DWORD       dwMajorVersion, /* Major # of driver spec in lpguidSP */
342     DWORD       dwMinorVersion, /* Minor # of driver spec in lpguidSP */ 
343     LPVOID      lpContext);     /* User given */
344
345 /* NOTE: This isn't in the dplay.h header file, but this shouldn't be 
346  *       a problem. We require this because we include all these header files
347  *       which declare GUIDs in guid.c
348  */
349 #ifndef __LPCGUID_DEFINED__
350 #define __LPCGUID_DEFINED__
351 typedef const GUID   *LPCGUID;
352 #endif
353
354 typedef const DPNAME *LPCDPNAME;
355
356 typedef BOOL CALLBACK (*LPDPENUMCONNECTIONSCALLBACK)(
357     LPCGUID     lpguidSP,
358     LPVOID      lpConnection,
359     DWORD       dwConnectionSize,
360     LPCDPNAME   lpName,
361     DWORD       dwFlags,
362     LPVOID      lpContext);
363
364 typedef BOOL CALLBACK (*LPDPENUMSESSIONSCALLBACK)(
365     LPDPSESSIONDESC lpDPSessionDesc,
366     LPVOID      lpContext,
367     LPDWORD     lpdwTimeOut,
368     DWORD       dwFlags);
369
370
371 extern HRESULT WINAPI DirectPlayEnumerateA( LPDPENUMDPCALLBACKA, LPVOID );
372 extern HRESULT WINAPI DirectPlayEnumerateW( LPDPENUMDPCALLBACKW, LPVOID );
373 extern HRESULT WINAPI DirectPlayCreate( LPGUID lpGUID, LPDIRECTPLAY2 *lplpDP, IUnknown *pUnk);
374
375 typedef BOOL CALLBACK (*LPDPENUMPLAYERSCALLBACK)(
376     DPID   dpId,
377     LPSTR  lpFriendlyName,
378     LPSTR  lpFormalName,
379     DWORD  dwFlags,
380     LPVOID          lpContext );
381
382 typedef BOOL CALLBACK (*LPDPENUMPLAYERSCALLBACK2)(
383     DPID            dpId,
384     DWORD           dwPlayerType,
385     LPCDPNAME       lpName,
386     DWORD           dwFlags,
387     LPVOID          lpContext );
388
389 typedef BOOL CALLBACK (*LPDPENUMSESSIONSCALLBACK2)(
390     LPCDPSESSIONDESC2   lpThisSD,
391     LPDWORD             lpdwTimeOut,
392     DWORD               dwFlags,
393     LPVOID              lpContext );
394
395 #define DPESC_TIMEDOUT          0x00000001
396
397 #include "poppack.h"
398
399 /*****************************************************************************
400  * IDirectPlay interface
401  */
402 #define ICOM_INTERFACE IDirectPlay
403 #define IDirectPlay_METHODS \
404     ICOM_METHOD2(HRESULT,AddPlayerToGroup,      DPID,idGroup, DPID,idPlayer) \
405     ICOM_METHOD (HRESULT,Close) \
406     ICOM_METHOD4(HRESULT,CreatePlayer,          LPDPID,lpidPlayer, LPSTR,lpPlayerName, LPSTR,, LPHANDLE,) \
407     ICOM_METHOD3(HRESULT,CreateGroup,           LPDPID,lpidGroup, LPSTR,lpGroupName, LPSTR,) \
408     ICOM_METHOD2(HRESULT,DeletePlayerFromGroup, DPID,idGroup, DPID,idPlayer) \
409     ICOM_METHOD1(HRESULT,DestroyPlayer,         DPID,idPlayer) \
410     ICOM_METHOD1(HRESULT,DestroyGroup,          DPID,idGroup) \
411     ICOM_METHOD1(HRESULT,EnableNewPlayers,      BOOL,) \
412     ICOM_METHOD4(HRESULT,EnumGroupPlayers,      DPID,idGroup, LPDPENUMPLAYERSCALLBACK,lpEnumPlayersCallback, LPVOID,lpContext, DWORD,dwFlags) \
413     ICOM_METHOD4(HRESULT,EnumGroups,            DWORD,, LPDPENUMPLAYERSCALLBACK,lpEnumPlayersCallback, LPVOID,lpContext, DWORD,dwFlags) \
414     ICOM_METHOD4(HRESULT,EnumPlayers,           DWORD,, LPDPENUMPLAYERSCALLBACK,lpEnumPlayersCallback, LPVOID,lpContext, DWORD,dwFlags) \
415     ICOM_METHOD5(HRESULT,EnumSessions,          LPDPSESSIONDESC,lpsd, DWORD,dwTimeout, LPDPENUMSESSIONSCALLBACK,lpEnumSessionsCallback, LPVOID,lpContext, DWORD,dwFlags) \
416     ICOM_METHOD1(HRESULT,GetCaps,               LPDPCAPS,lpDPCaps) \
417     ICOM_METHOD2(HRESULT,GetMessageCount,       DPID,idPlayer, LPDWORD,lpdwCount) \
418     ICOM_METHOD2(HRESULT,GetPlayerCaps,         DPID,idPlayer, LPDPCAPS,lpPlayerCaps) \
419     ICOM_METHOD5(HRESULT,GetPlayerName,         DPID,idPlayer, LPSTR,, LPDWORD,, LPSTR,, LPDWORD,) \
420     ICOM_METHOD1(HRESULT,Initialize,            LPGUID,lpGUID) \
421     ICOM_METHOD1(HRESULT,Open,                  LPDPSESSIONDESC,lpsd) \
422     ICOM_METHOD5(HRESULT,Receive,               LPDPID,lpidFrom, LPDPID,lpidTo, DWORD,dwFlags, LPVOID,lpData, LPDWORD,lpdwDataSize) \
423     ICOM_METHOD1(HRESULT,SaveSession,           LPSTR,) \
424     ICOM_METHOD5(HRESULT,Send,                  DPID,idFrom, DPID,idTo, DWORD,dwFlags, LPVOID,lpData, DWORD,dwDataSize) \
425     ICOM_METHOD3(HRESULT,SetPlayerName,         DPID,idPlayer, LPSTR,lpPlayerName, LPSTR,)
426 #define IDirectPlay_IMETHODS \
427     IUnknown_IMETHODS \
428     IDirectPlay_METHODS
429 ICOM_DEFINE(IDirectPlay,IUnknown)
430 #undef ICOM_INTERFACE
431
432     /*** IUnknown methods ***/
433 #define IDirectPlay_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
434 #define IDirectPlay_AddRef(p)             ICOM_CALL (AddRef,p)
435 #define IDirectPlay_Release(p)            ICOM_CALL (Release,p)
436 /*** IDirectPlay methods ***/
437 #define IDirectPlay_AddPlayerToGroup(p,a,b)      ICOM_CALL2(AddPlayerToGroup,p,a,b)
438 #define IDirectPlay_Close(p)                     ICOM_CALL (Close,p)
439 #define IDirectPlay_CreatePlayer(p,a,b,c,d)      ICOM_CALL4(CreatePlayer,p,a,b,c,d)
440 #define IDirectPlay_CreateGroup(p,a,b,c)         ICOM_CALL3(CreateGroup,p,a,b,c)
441 #define IDirectPlay_DeletePlayerFromGroup(p,a,b) ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
442 #define IDirectPlay_DestroyPlayer(p,a)           ICOM_CALL1(DestroyPlayer,p,a)
443 #define IDirectPlay_DestroyGroup(p,a)            ICOM_CALL1(DestroyGroup,p,a)
444 #define IDirectPlay_EnableNewPlayers(p,a)        ICOM_CALL1(EnableNewPlayers,p,a)
445 #define IDirectPlay_EnumGroupPlayers(p,a,b,c,d)  ICOM_CALL4(EnumGroupPlayers,p,a,b,c,d)
446 #define IDirectPlay_EnumGroups(p,a,b,c,d)        ICOM_CALL4(EnumGroups,p,a,b,c,d)
447 #define IDirectPlay_EnumPlayers(p,a,b,c,d)       ICOM_CALL4(EnumPlayers,p,a,b,c,d)
448 #define IDirectPlay_EnumSessions(p,a,b,c,d,e)    ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
449 #define IDirectPlay_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
450 #define IDirectPlay_GetMessageCount(p,a,b)       ICOM_CALL2(GetMessageCount,p,a,b)
451 #define IDirectPlay_GetPlayerCaps(p,a,b)         ICOM_CALL2(GetPlayerCaps,p,a,b)
452 #define IDirectPlay_GetPlayerName(p,a,b,c,d,e)   ICOM_CALL5(GetPlayerName,p,a,b,c,d,e)
453 #define IDirectPlay_Initialize(p,a)              ICOM_CALL1(Initialize,p,a)
454 #define IDirectPlay_Open(p,a)                    ICOM_CALL1(Open,p,a)
455 #define IDirectPlay_Receive(p,a,b,c,d,e)         ICOM_CALL5(Receive,p,a,b,c,d,e)
456 #define IDirectPlay_SaveSession(p,a)             ICOM_CALL1(SaveSession,p,a)
457 #define IDirectPlay_Send(p,a,b,c,d,e)            ICOM_CALL5(Send,p,a,b,c,d,e)
458 #define IDirectPlay_SetPlayerName(p,a,b,c)       ICOM_CALL3(SetPlayerName,p,a,b,c)
459
460
461 /*****************************************************************************
462  * IDirectPlay2 and IDirectPlay2A interface
463  */
464 #define ICOM_INTERFACE IDirectPlay2
465 #define IDirectPlay2_METHODS \
466     ICOM_METHOD2(HRESULT,AddPlayerToGroup,      DPID,idGroup, DPID,idPlayer) \
467     ICOM_METHOD (HRESULT,Close) \
468     ICOM_METHOD5(HRESULT,CreateGroup,           LPDPID,lpidGroup, LPDPNAME,lpGroupName, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
469     ICOM_METHOD6(HRESULT,CreatePlayer,          LPDPID,lpidPlayer, LPDPNAME,lpPlayerName, HANDLE,hEvent, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
470     ICOM_METHOD2(HRESULT,DeletePlayerFromGroup, DPID,idGroup, DPID,idPlayer) \
471     ICOM_METHOD1(HRESULT,DestroyGroup,          DPID,idGroup) \
472     ICOM_METHOD1(HRESULT,DestroyPlayer,         DPID,idPlayer) \
473     ICOM_METHOD5(HRESULT,EnumGroupPlayers,      DPID,idGroup, LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumPlayersCallback2, LPVOID,lpContext, DWORD,dwFlags) \
474     ICOM_METHOD4(HRESULT,EnumGroups,            LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumPlayersCallback2, LPVOID,lpContext, DWORD,dwFlags) \
475     ICOM_METHOD4(HRESULT,EnumPlayers,           LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumPlayersCallback2, LPVOID,lpContext, DWORD,dwFlags) \
476     ICOM_METHOD5(HRESULT,EnumSessions,          LPDPSESSIONDESC2,lpsd, DWORD,dwTimeout, LPDPENUMSESSIONSCALLBACK2,lpEnumSessionsCallback2, LPVOID,lpContext, DWORD,dwFlags) \
477     ICOM_METHOD2(HRESULT,GetCaps,               LPDPCAPS,lpDPCaps, DWORD,dwFlags) \
478     ICOM_METHOD4(HRESULT,GetGroupData,          DPID,idGroup, LPVOID,lpData, LPDWORD,lpdwDataSize, DWORD,dwFlags) \
479     ICOM_METHOD3(HRESULT,GetGroupName,          DPID,idGroup, LPVOID,lpData, LPDWORD,lpdwDataSize) \
480     ICOM_METHOD2(HRESULT,GetMessageCount,       DPID,idPlayer, LPDWORD,lpdwCount) \
481     ICOM_METHOD3(HRESULT,GetPlayerAddress,      DPID,idPlayer, LPVOID,lpData, LPDWORD,lpdwDataSize) \
482     ICOM_METHOD3(HRESULT,GetPlayerCaps,         DPID,idPlayer, LPDPCAPS,lpPlayerCaps, DWORD,dwFlags) \
483     ICOM_METHOD4(HRESULT,GetPlayerData,         DPID,idPlayer, LPVOID,lpData, LPDWORD,lpdwDataSize, DWORD,dwFlags) \
484     ICOM_METHOD3(HRESULT,GetPlayerName,         DPID,idPlayer, LPVOID,lpData, LPDWORD,lpdwDataSize) \
485     ICOM_METHOD2(HRESULT,GetSessionDesc,        LPVOID,lpData, LPDWORD,lpdwDataSize) \
486     ICOM_METHOD1(HRESULT,Initialize,            LPGUID,lpGUID) \
487     ICOM_METHOD2(HRESULT,Open,                  LPDPSESSIONDESC2,lpsd, DWORD,dwFlags) \
488     ICOM_METHOD5(HRESULT,Receive,               LPDPID,lpidFrom, LPDPID,lpidTo, DWORD,dwFlags, LPVOID,lpData, LPDWORD,lpdwDataSize) \
489     ICOM_METHOD5(HRESULT,Send,                  DPID,idFrom, DPID,idTo, DWORD,dwFlags, LPVOID,lpData, DWORD,dwDataSize) \
490     ICOM_METHOD4(HRESULT,SetGroupData,          DPID,idGroup, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
491     ICOM_METHOD3(HRESULT,SetGroupName,          DPID,idGroup, LPDPNAME,lpGroupName, DWORD,dwFlags) \
492     ICOM_METHOD4(HRESULT,SetPlayerData,         DPID,idPlayer, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
493     ICOM_METHOD3(HRESULT,SetPlayerName,         DPID,idPlayer, LPDPNAME,lpPlayerName, DWORD,dwFlags) \
494     ICOM_METHOD2(HRESULT,SetSessionDesc,        LPDPSESSIONDESC2,lpSessDesc, DWORD,dwFlags)
495 #define IDirectPlay2_IMETHODS \
496     IUnknown_IMETHODS \
497     IDirectPlay2_METHODS
498 ICOM_DEFINE(IDirectPlay2,IUnknown)
499 #undef ICOM_INTERFACE
500
501 /*** IUnknown methods ***/
502 #define IDirectPlay2_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
503 #define IDirectPlay2_AddRef(p)             ICOM_CALL (AddRef,p)
504 #define IDirectPlay2_Release(p)            ICOM_CALL (Release,p)
505     /*** IDirectPlay2 methods ***/
506 #define IDirectPlay2_AddPlayerToGroup(p,a,b)       ICOM_CALL2(AddPlayerToGroup,p,a,b)
507 #define IDirectPlay2_Close(p)                      ICOM_CALL (Close,p)
508 #define IDirectPlay2_CreateGroup(p,a,b,c,d,e)      ICOM_CALL5(CreateGroup,p,a,b,c,d,e)
509 #define IDirectPlay2_CreatePlayer(p,a,b,c,d,e,f)   ICOM_CALL6(CreatePlayer,p,a,b,c,d,e,f)
510 #define IDirectPlay2_DeletePlayerFromGroup(p,a,b)  ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
511 #define IDirectPlay2_DestroyGroup(p,a)             ICOM_CALL1(DestroyGroup,p,a)
512 #define IDirectPlay2_DestroyPlayer(p,a)            ICOM_CALL1(DestroyPlayer,p,a)
513 #define IDirectPlay2_EnumGroupPlayers(p,a,b,c,d,e) ICOM_CALL5(EnumGroupPlayers,p,a,b,c,d,e)
514 #define IDirectPlay2_EnumGroups(p,a,b,c,d)         ICOM_CALL4(EnumGroups,p,a,b,c,d)
515 #define IDirectPlay2_EnumPlayers(p,a,b,c,d)        ICOM_CALL4(EnumPlayers,p,a,b,c,d)
516 #define IDirectPlay2_EnumSessions(p,a,b,c,d,e)     ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
517 #define IDirectPlay2_GetCaps(p,a,b)                ICOM_CALL2(GetCaps,p,a,b)
518 #define IDirectPlay2_GetGroupData(p,a,b,c,d)       ICOM_CALL4(GetGroupData,p,a,b,c,d)
519 #define IDirectPlay2_GetGroupName(p,a,b,c)         ICOM_CALL3(GetGroupName,p,a,b,c)
520 #define IDirectPlay2_GetMessageCount(p,a,b)        ICOM_CALL2(GetMessageCount,p,a,b)
521 #define IDirectPlay2_GetPlayerAddress(p,a,b,c)     ICOM_CALL3(GetPlayerAddress,p,a,b,c)
522 #define IDirectPlay2_GetPlayerCaps(p,a,b,c)        ICOM_CALL3(GetPlayerCaps,p,a,b,c)
523 #define IDirectPlay2_GetPlayerData(p,a,b,c,d)      ICOM_CALL4(GetPlayerData,p,a,b,c,d)
524 #define IDirectPlay2_GetPlayerName(p,a,b,c)        ICOM_CALL3(GetPlayerName,p,a,b,c)
525 #define IDirectPlay2_GetSessionDesc(p,a,b)         ICOM_CALL2(GetSessionDesc,p,a,b)
526 #define IDirectPlay2_Initialize(p,a)               ICOM_CALL1(Initialize,p,a)
527 #define IDirectPlay2_Open(p,a,b)                   ICOM_CALL2(Open,p,a,b)
528 #define IDirectPlay2_Receive(p,a,b,c,d,e)          ICOM_CALL5(Receive,p,a,b,c,d,e)
529 #define IDirectPlay2_Send(p,a,b,c,d,e)             ICOM_CALL5(Send,p,a,b,c,d,e)
530 #define IDirectPlay2_SetGroupData(p,a,b,c,d)       ICOM_CALL4(SetGroupData,p,a,b,c,d)
531 #define IDirectPlay2_SetGroupName(p,a,b,c)         ICOM_CALL3(SetGroupName,p,a,b,c)
532 #define IDirectPlay2_SetPlayerData(p,a,b,c,d)      ICOM_CALL4(SetPlayerData,p,a,b,c,d)
533 #define IDirectPlay2_SetPlayerName(p,a,b,c)        ICOM_CALL3(SetPlayerName,p,a,b,c)
534 #define IDirectPlay2_SetSessionDesc(p,a,b)         ICOM_CALL2(SetSessionDesc,p,a,b)
535
536
537 /*****************************************************************************
538  * IDirectPlay3 and IDirectPlay3A interface
539  */
540 #define ICOM_INTERFACE IDirectPlay3
541 #define IDirectPlay3_METHODS \
542     ICOM_METHOD2(HRESULT,AddGroupToGroup,            DPID,idParentGroup, DPID,idGroup) \
543     ICOM_METHOD6(HRESULT,CreateGroupInGroup,         DPID,idParentGroup, LPDPID,lpidGroup, LPDPNAME,lpGroupName, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
544     ICOM_METHOD2(HRESULT,DeleteGroupFromGroup,       DPID,idParentGroup, DPID,idGroup) \
545     ICOM_METHOD4(HRESULT,EnumConnections,            LPCGUID,lpguidApplication, LPDPENUMCONNECTIONSCALLBACK,lpEnumCallback, LPVOID,lpContext, DWORD,dwFlags) \
546     ICOM_METHOD5(HRESULT,EnumGroupsInGroup,          DPID,idGroup, LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumCallback, LPVOID,lpContext, DWORD,dwFlags) \
547     ICOM_METHOD4(HRESULT,GetGroupConnectionSettings, DWORD,dwFlags, DPID,idGroup, LPVOID,lpData, LPDWORD,lpdwDataSize) \
548     ICOM_METHOD2(HRESULT,InitializeConnection,       LPVOID,lpConnection, DWORD,dwFlags) \
549     ICOM_METHOD4(HRESULT,SecureOpen,                 LPCDPSESSIONDESC2,lpsd, DWORD,dwFlags, LPCDPSECURITYDESC,lpSecurity, LPCDPCREDENTIALS,lpCredentials) \
550     ICOM_METHOD4(HRESULT,SendChatMessage,            DPID,idFrom, DPID,idTo, DWORD,dwFlags, LPDPCHAT,lpChatMessage) \
551     ICOM_METHOD3(HRESULT,SetGroupConnectionSettings, DWORD,dwFlags, DPID,idGroup, LPDPLCONNECTION,lpConnection) \
552     ICOM_METHOD2(HRESULT,StartSession,               DWORD,dwFlags, DPID,idGroup) \
553     ICOM_METHOD2(HRESULT,GetGroupFlags,              DPID,idGroup, LPDWORD,lpdwFlags) \
554     ICOM_METHOD2(HRESULT,GetGroupParent,             DPID,idGroup, LPDPID,lpidParent) \
555     ICOM_METHOD4(HRESULT,GetPlayerAccount,           DPID,idPlayer, DWORD,dwFlags, LPVOID,lpData, LPDWORD,lpdwDataSize) \
556     ICOM_METHOD2(HRESULT,GetPlayerFlags,             DPID,idPlayer, LPDWORD,lpdwFlags)
557 #define IDirectPlay3_IMETHODS \
558     IDirectPlay2_IMETHODS \
559     IDirectPlay3_METHODS
560 ICOM_DEFINE(IDirectPlay3,IDirectPlay2)
561 #undef ICOM_INTERFACE
562
563 /*** IUnknown methods ***/
564 #define IDirectPlay3_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
565 #define IDirectPlay3_AddRef(p)             ICOM_CALL (AddRef,p)
566 #define IDirectPlay3_Release(p)            ICOM_CALL (Release,p)
567 /*** IDirectPlay2 methods ***/
568 #define IDirectPlay3_AddPlayerToGroup(p,a,b)       ICOM_CALL2(AddPlayerToGroup,p,a,b)
569 #define IDirectPlay3_Close(p)                      ICOM_CALL (Close,p)
570 #define IDirectPlay3_CreateGroup(p,a,b,c,d,e)      ICOM_CALL5(CreateGroup,p,a,b,c,d,e)
571 #define IDirectPlay3_CreatePlayer(p,a,b,c,d,e,f)   ICOM_CALL6(CreatePlayer,p,a,b,c,d,e,f)
572 #define IDirectPlay3_DeletePlayerFromGroup(p,a,b)  ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
573 #define IDirectPlay3_DestroyGroup(p,a)             ICOM_CALL1(DestroyGroup,p,a)
574 #define IDirectPlay3_DestroyPlayer(p,a)            ICOM_CALL1(DestroyPlayer,p,a)
575 #define IDirectPlay3_EnumGroupPlayers(p,a,b,c,d,e) ICOM_CALL5(EnumGroupPlayers,p,a,b,c,d,e)
576 #define IDirectPlay3_EnumGroups(p,a,b,c,d)         ICOM_CALL4(EnumGroups,p,a,b,c,d)
577 #define IDirectPlay3_EnumPlayers(p,a,b,c,d)        ICOM_CALL4(EnumPlayers,p,a,b,c,d)
578 #define IDirectPlay3_EnumSessions(p,a,b,c,d,e)     ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
579 #define IDirectPlay3_GetCaps(p,a,b)                ICOM_CALL2(GetCaps,p,a,b)
580 #define IDirectPlay3_GetGroupData(p,a,b,c,d)       ICOM_CALL4(GetGroupData,p,a,b,c,d)
581 #define IDirectPlay3_GetGroupName(p,a,b,c)         ICOM_CALL3(GetGroupName,p,a,b,c)
582 #define IDirectPlay3_GetMessageCount(p,a,b)        ICOM_CALL2(GetMessageCount,p,a,b)
583 #define IDirectPlay3_GetPlayerAddress(p,a,b,c)     ICOM_CALL3(GetPlayerAddress,p,a,b,c)
584 #define IDirectPlay3_GetPlayerCaps(p,a,b,c)        ICOM_CALL3(GetPlayerCaps,p,a,b,c)
585 #define IDirectPlay3_GetPlayerData(p,a,b,c,d)      ICOM_CALL4(GetPlayerData,p,a,b,c,d)
586 #define IDirectPlay3_GetPlayerName(p,a,b,c)        ICOM_CALL3(GetPlayerName,p,a,b,c)
587 #define IDirectPlay3_GetSessionDesc(p,a,b)         ICOM_CALL2(GetSessionDesc,p,a,b)
588 #define IDirectPlay3_Initialize(p,a)               ICOM_CALL1(Initialize,p,a)
589 #define IDirectPlay3_Open(p,a,b)                   ICOM_CALL2(Open,p,a,b)
590 #define IDirectPlay3_Receive(p,a,b,c,d,e)          ICOM_CALL5(Receive,p,a,b,c,d,e)
591 #define IDirectPlay3_Send(p,a,b,c,d,e)             ICOM_CALL5(Send,p,a,b,c,d,e)
592 #define IDirectPlay3_SetGroupData(p,a,b,c,d)       ICOM_CALL4(SetGroupData,p,a,b,c,d)
593 #define IDirectPlay3_SetGroupName(p,a,b,c)         ICOM_CALL3(SetGroupName,p,a,b,c)
594 #define IDirectPlay3_SetPlayerData(p,a,b,c,d)      ICOM_CALL4(SetPlayerData,p,a,b,c,d)
595 #define IDirectPlay3_SetPlayerName(p,a,b,c)        ICOM_CALL3(SetPlayerName,p,a,b,c)
596 #define IDirectPlay3_SetSessionDesc(p,a,b)         ICOM_CALL2(SetSessionDesc,p,a,b)
597 /*** IDirectPlay3 methods ***/
598 #define IDirectPlay3_AddGroupToGroup(p,a,b)                ICOM_CALL2(AddGroupToGroup,p,a,b)
599 #define IDirectPlay3_CreateGroupInGroup(p,a,b,c,d,e,f)     ICOM_CALL6(CreateGroupInGroup,p,a,b,c,d,e,f)
600 #define IDirectPlay3_DeleteGroupFromGroup(p,a,b)           ICOM_CALL2(DeleteGroupFromGroup,p,a,b)
601 #define IDirectPlay3_EnumConnections(p,a,b,c,d)            ICOM_CALL4(EnumConnections,p,a,b,c,d)
602 #define IDirectPlay3_EnumGroupsInGroup(p,a,b,c,d,e)        ICOM_CALL5(EnumGroupsInGroup,p,a,b,c,d,e)
603 #define IDirectPlay3_GetGroupConnectionSettings(p,a,b,c,d) ICOM_CALL4(GetGroupConnectionSettings,p,a,b,c,d)
604 #define IDirectPlay3_InitializeConnection(p,a,b)           ICOM_CALL2(InitializeConnection,p,a,b)
605 #define IDirectPlay3_SecureOpen(p,a,b,c,d)                 ICOM_CALL4(SecureOpen,p,a,b,c,d)
606 #define IDirectPlay3_SendChatMessage(p,a,b,c,d)            ICOM_CALL4(SendChatMessage,p,a,b,c,d)
607 #define IDirectPlay3_SetGroupConnectionSettings(p,a,b,c)   ICOM_CALL3(SetGroupConnectionSettings,p,a,b,c)
608 #define IDirectPlay3_StartSession(p,a,b)                   ICOM_CALL2(StartSession,p,a,b)
609 #define IDirectPlay3_GetGroupFlags(p,a,b)                  ICOM_CALL2(GetGroupFlags,p,a,b)
610 #define IDirectPlay3_GetGroupParent(p,a,b)                 ICOM_CALL2(GetGroupParent,p,a,b)
611 #define IDirectPlay3_GetPlayerAccount(p,a,b,c,d)           ICOM_CALL4(GetPlayerAccount,p,a,b,c,d)
612 #define IDirectPlay3_GetPlayerFlags(p,a,b)                 ICOM_CALL2(GetPlayerFlags,p,a,b)
613
614 /*****************************************************************************
615  * IDirectPlay4 and IDirectPlay4A interface 
616  */
617 #define ICOM_INTERFACE IDirectPlay4
618 #define IDirectPlay4_METHODS \
619     ICOM_METHOD2( HRESULT, GetGroupOwner,        DPID,, LPDPID, ) \
620     ICOM_METHOD2( HRESULT, SetGroupOwner,        DPID,, DPID, ) \
621     ICOM_METHOD9( HRESULT, SendEx,               DPID,, DPID,, DWORD,, LPVOID,, DWORD,, DWORD,, DWORD,, LPVOID,, LPDWORD, ) \
622     ICOM_METHOD5( HRESULT, GetMessageQueue,      DPID,, DPID,, DWORD,, LPDWORD,, LPDWORD, ) \
623     ICOM_METHOD2( HRESULT, CancelMessage,        DWORD,, DWORD, ) \
624     ICOM_METHOD3( HRESULT, CancelPriority,       DWORD,, DWORD,, DWORD, )
625
626 #define IDirectPlay4_IMETHODS \
627     IDirectPlay3_IMETHODS \
628     IDirectPlay4_METHODS 
629 ICOM_DEFINE(IDirectPlay4,IDirectPlay3)
630 #undef ICOM_INTERFACE
631
632 /*** IUnknown methods ***/
633 #define IDirectPlayX_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
634 #define IDirectPlayX_AddRef(p)             ICOM_CALL (AddRef,p)
635 #define IDirectPlayX_Release(p)            ICOM_CALL (Release,p)
636 /*** IDirectPlay2 methods ***/
637 #define IDirectPlayX_AddPlayerToGroup(p,a,b)       ICOM_CALL2(AddPlayerToGroup,p,a,b)
638 #define IDirectPlayX_Close(p)                      ICOM_CALL (Close,p)
639 #define IDirectPlayX_CreateGroup(p,a,b,c,d,e)      ICOM_CALL5(CreateGroup,p,a,b,c,d,e)
640 #define IDirectPlayX_CreatePlayer(p,a,b,c,d,e,f)   ICOM_CALL6(CreatePlayer,p,a,b,c,d,e,f)
641 #define IDirectPlayX_DeletePlayerFromGroup(p,a,b)  ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
642 #define IDirectPlayX_DestroyGroup(p,a)             ICOM_CALL1(DestroyGroup,p,a)
643 #define IDirectPlayX_DestroyPlayer(p,a)            ICOM_CALL1(DestroyPlayer,p,a)
644 #define IDirectPlayX_EnumGroupPlayers(p,a,b,c,d,e) ICOM_CALL5(EnumGroupPlayers,p,a,b,c,d,e)
645 #define IDirectPlayX_EnumGroups(p,a,b,c,d)         ICOM_CALL4(EnumGroups,p,a,b,c,d)
646 #define IDirectPlayX_EnumPlayers(p,a,b,c,d)        ICOM_CALL4(EnumPlayers,p,a,b,c,d)
647 #define IDirectPlayX_EnumSessions(p,a,b,c,d,e)     ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
648 #define IDirectPlayX_GetCaps(p,a,b)                ICOM_CALL2(GetCaps,p,a,b)
649 #define IDirectPlayX_GetGroupData(p,a,b,c,d)       ICOM_CALL4(GetGroupData,p,a,b,c,d)
650 #define IDirectPlayX_GetGroupName(p,a,b,c)         ICOM_CALL3(GetGroupName,p,a,b,c)
651 #define IDirectPlayX_GetMessageCount(p,a,b)        ICOM_CALL2(GetMessageCount,p,a,b)
652 #define IDirectPlayX_GetPlayerAddress(p,a,b,c)     ICOM_CALL3(GetPlayerAddress,p,a,b,c)
653 #define IDirectPlayX_GetPlayerCaps(p,a,b,c)        ICOM_CALL3(GetPlayerCaps,p,a,b,c)
654 #define IDirectPlayX_GetPlayerData(p,a,b,c,d)      ICOM_CALL4(GetPlayerData,p,a,b,c,d)
655 #define IDirectPlayX_GetPlayerName(p,a,b,c)        ICOM_CALL3(GetPlayerName,p,a,b,c)
656 #define IDirectPlayX_GetSessionDesc(p,a,b)         ICOM_CALL2(GetSessionDesc,p,a,b)
657 #define IDirectPlayX_Initialize(p,a)               ICOM_CALL1(Initialize,p,a)
658 #define IDirectPlayX_Open(p,a,b)                   ICOM_CALL2(Open,p,a,b)
659 #define IDirectPlayX_Receive(p,a,b,c,d,e)          ICOM_CALL5(Receive,p,a,b,c,d,e)
660 #define IDirectPlayX_Send(p,a,b,c,d,e)             ICOM_CALL5(Send,p,a,b,c,d,e)
661 #define IDirectPlayX_SetGroupData(p,a,b,c,d)       ICOM_CALL4(SetGroupData,p,a,b,c,d)
662 #define IDirectPlayX_SetGroupName(p,a,b,c)         ICOM_CALL3(SetGroupName,p,a,b,c)
663 #define IDirectPlayX_SetPlayerData(p,a,b,c,d)      ICOM_CALL4(SetPlayerData,p,a,b,c,d)
664 #define IDirectPlayX_SetPlayerName(p,a,b,c)        ICOM_CALL3(SetPlayerName,p,a,b,c)
665 #define IDirectPlayX_SetSessionDesc(p,a,b)         ICOM_CALL2(SetSessionDesc,p,a,b)
666 /*** IDirectPlay3 methods ***/
667 #define IDirectPlayX_AddGroupToGroup(p,a,b)                ICOM_CALL2(AddGroupToGroup,p,a,b)
668 #define IDirectPlayX_CreateGroupInGroup(p,a,b,c,d,e,f)     ICOM_CALL6(CreateGroupInGroup,p,a,b,c,d,e,f)
669 #define IDirectPlayX_DeleteGroupFromGroup(p,a,b)           ICOM_CALL2(DeleteGroupFromGroup,p,a,b)
670 #define IDirectPlayX_EnumConnections(p,a,b,c,d)            ICOM_CALL4(EnumConnections,p,a,b,c,d)
671 #define IDirectPlayX_EnumGroupsInGroup(p,a,b,c,d,e)        ICOM_CALL5(EnumGroupsInGroup,p,a,b,c,d,e)
672 #define IDirectPlayX_GetGroupConnectionSettings(p,a,b,c,d) ICOM_CALL4(GetGroupConnectionSettings,p,a,b,c,d)
673 #define IDirectPlayX_InitializeConnection(p,a,b)           ICOM_CALL2(InitializeConnection,p,a,b)
674 #define IDirectPlayX_SecureOpen(p,a,b,c,d)                 ICOM_CALL4(SecureOpen,p,a,b,c,d)
675 #define IDirectPlayX_SendChatMessage(p,a,b,c,d)            ICOM_CALL4(SendChatMessage,p,a,b,c,d)
676 #define IDirectPlayX_SetGroupConnectionSettings(p,a,b,c)   ICOM_CALL3(SetGroupConnectionSettings,p,a,b,c)
677 #define IDirectPlayX_StartSession(p,a,b)                   ICOM_CALL2(StartSession,p,a,b)
678 #define IDirectPlayX_GetGroupFlags(p,a,b)                  ICOM_CALL2(GetGroupFlags,p,a,b)
679 #define IDirectPlayX_GetGroupParent(p,a,b)                 ICOM_CALL2(GetGroupParent,p,a,b)
680 #define IDirectPlayX_GetPlayerAccount(p,a,b,c,d)           ICOM_CALL4(GetPlayerAccount,p,a,b,c,d)
681 #define IDirectPlayX_GetPlayerFlags(p,a,b)                 ICOM_CALL2(GetPlayerFlags,p,a,b)
682 /*** IDirectPlay4 methods ***/
683 #define IDirectPlayX_GetGroupOwner(p,a,b)                  ICOM_CALL2(GetGroupOwner,p,a,b)
684 #define IDirectPlayX_SetGroupOwner(p,a,b)                  ICOM_CALL2(SetGroupOwner,p,a,b)
685 #define IDirectPlayX_SendEx(p,a,b,c,d,e,f,g,h,i)           ICOM_CALL9(SendEx,a,b,c,d,e,f,g,h,i)
686 #define IDirectPlayX_GetMessageQueue(p,a,b,c,d,e)          ICOM_CALL5(GetMessageQueue,a,b,c,d,e)
687 #define IDirectPlayX_CancelMessage(p,a,b)                  ICOM_CALL2(CancelMessage,a,b)
688 #define IDirectPlayX_CancelPriority(p,a,b,c)               ICOM_CALL3(CancelPriority,a,b,c)
689
690
691 /* For DirectPlay::EnumConnections */
692 #define DPCONNECTION_DIRECTPLAY      0x00000001
693 #define DPCONNECTION_DIRECTPLAYLOBBY 0x00000002
694
695 /* For DirectPlay::EnumPlayers and DirectPlay::EnumGroups */
696 #define DPENUMPLAYERS_ALL           0x00000000
697 #define DPENUMPLAYERS_LOCAL         0x00000008
698 #define DPENUMPLAYERS_REMOTE        0x00000010
699 #define DPENUMPLAYERS_GROUP         0x00000020
700 #define DPENUMPLAYERS_SESSION       0x00000080
701 #define DPENUMPLAYERS_SERVERPLAYER  0x00000100
702 #define DPENUMPLAYERS_SPECTATOR     0x00000200
703 #define DPENUMPLAYERS_OWNER         0x00002000
704
705 #define DPENUMGROUPS_ALL            DPENUMPLAYERS_ALL
706 #define DPENUMGROUPS_LOCAL          DPENUMPLAYERS_LOCAL
707 #define DPENUMGROUPS_REMOTE         DPENUMPLAYERS_REMOTE
708 #define DPENUMGROUPS_SESSION        DPENUMPLAYERS_SESSION
709 #define DPENUMGROUPS_SHORTCUT       0x00000400
710 #define DPENUMGROUPS_STAGINGAREA    0x00000800
711 #define DPENUMGROUPS_HIDDEN         0x00001000
712
713
714 /* For DirectPlay::CreatePlayer */ 
715 #define DPPLAYER_SERVERPLAYER  DPENUMPLAYERS_SERVERPLAYER
716 #define DPPLAYER_SPECTATOR     DPENUMPLAYERS_SPECTATOR
717 #define DPPLAYER_LOCAL         DPENUMPLAYERS_LOCAL
718 #define DPPLAYER_OWNER         DPENUMPLAYERS_OWNER
719
720 /* For DirectPlay::CreateGroup */
721 #define DPGROUP_STAGINGAREA  DPENUMGROUPS_STAGINGAREA
722 #define DPGROUP_LOCAL        DPENUMGROUPS_LOCAL
723 #define DPGROUP_HIDDEN       DPENUMGROUPS_HIDDEN
724
725 /* For DirectPlay::EnumSessions */
726 #define DPENUMSESSIONS_AVAILABLE         0x00000001
727 #define DPENUMSESSIONS_ALL               0x00000002
728 #define DPENUMSESSIONS_ASYNC             0x00000010
729 #define DPENUMSESSIONS_STOPASYNC         0x00000020
730 #define DPENUMSESSIONS_PASSWORDREQUIRED  0x00000040
731 #define DPENUMSESSIONS_RETURNSTATUS      0x00000080
732
733 /* For DirectPlay::GetCaps and DirectPlay::GetPlayerCaps */
734 #define DPGETCAPS_GUARANTEED  0x00000001
735
736 /* For DirectPlay::GetGroupData and DirectPlay::GetPlayerData */
737 #define DPGET_REMOTE  0x00000000
738 #define DPGET_LOCAL   0x00000001
739
740 /* For DirectPlay::Receive */
741 #define DPRECEIVE_ALL         0x00000001
742 #define DPRECEIVE_TOPLAYER    0x00000002
743 #define DPRECEIVE_FROMPLAYER  0x00000004
744 #define DPRECEIVE_PEEK        0x00000008
745
746 /* For DirectPlay::Send */
747 #define DPSEND_NONGUARANTEED       0x00000000
748 #define DPSEND_GUARANTEED          0x00000001
749 #define DPSEND_HIGHPRIORITY        0x00000002
750 #define DPSEND_OPENSTREAM          0x00000008
751 #define DPSEND_CLOSESTREAM         0x00000010
752 #define DPSEND_SIGNED              0x00000020
753 #define DPSEND_ENCRYPTED           0x00000040
754 #define DPSEND_LOBBYSYSTEMMESSAGE  0x00000080
755 #define DPSEND_ASYNC               0x00000200
756 #define DPSEND_NOSENDCOMPLETEMSG   0x00000400
757
758 #define DPSEND_MAX_PRI       0x0000FFFF
759 #define DPSEND_MAX_PRIORITY  DPSEND_MAX_PRI
760
761
762 /* For  DirectPlay::SetGroupData, DirectPlay::SetGroupName, 
763  * DirectPlay::SetPlayerData, DirectPlay::SetPlayerName and 
764  * DirectPlay::SetSessionDesc.
765  */
766 #define DPSET_REMOTE      0x00000000
767 #define DPSET_LOCAL       0x00000001
768 #define DPSET_GUARANTEED  0x00000002
769
770 /* For DirectPlay::GetMessageQueue */
771 #define DPMESSAGEQUEUE_SEND    0x00000001
772 #define DPMESSAGEQUEUE_RECEIVE 0x00000002
773
774 /* DirectPlay::Connect */
775 #define DPCONNECT_RETURNSTATUS  (DPENUMSESSIONS_RETURNSTATUS)
776
777
778 /** DirectPlay system messages **/
779
780 /* A new player or group has been created in the session */
781 #define DPSYS_CREATEPLAYERORGROUP   0x0003
782
783 /* A player or group has been deleted from the session */
784 #define DPSYS_DESTROYPLAYERORGROUP  0x0005
785
786 /* A player has been added to a group */
787 #define DPSYS_ADDPLAYERTOGROUP      0x0007
788
789 /* A player has been deleted from a group */
790 #define DPSYS_DELETEPLAYERFROMGROUP 0x0021
791
792 /* Session lost for this object - ie lost contact with all players */
793 #define DPSYS_SESSIONLOST           0x0031
794
795 /* The current host has left the session */
796 #define DPSYS_HOST                  0x0101
797
798 /* Player or group data has changed */
799 #define DPSYS_SETPLAYERORGROUPDATA  0x0102
800
801 /* The name of a player or group has changed */
802 #define DPSYS_SETPLAYERORGROUPNAME  0x0103
803
804 /* The session description has changed */
805 #define DPSYS_SETSESSIONDESC        0x0104
806
807 /* A group has been added to a group */
808 #define DPSYS_ADDGROUPTOGROUP           0x0105
809
810 /* A group has been deleted from a group */
811 #define DPSYS_DELETEGROUPFROMGROUP      0x0106
812
813 /* A secure player to player message has arrived */
814 #define DPSYS_SECUREMESSAGE         0x0107
815
816 /* Start a new session */
817 #define DPSYS_STARTSESSION          0x0108
818
819 /* A chat message has arrived */
820 #define DPSYS_CHAT                  0x0109
821
822 /* The owner of a group has changed */
823 #define DPSYS_SETGROUPOWNER         0x010A
824
825 /* An async send is done (finished normally, failed or cancelled) */
826 #define DPSYS_SENDCOMPLETE          0x010d
827
828 /** DirectPlay System Messages **/ 
829
830 #define DPPLAYERTYPE_GROUP   0x00000000
831 #define DPPLAYERTYPE_PLAYER  0x00000001
832
833
834 /* NOTE: DPMSG_HOST and DPMSG_GENERIC share the same format */
835 typedef struct tagDPMSG_GENERIC
836 {
837    DWORD       dwType; /* Use message type as described above */
838 } DPMSG_GENERIC,     *LPDPMSG_GENERIC, 
839   DPMSG_HOST,        *LPDPMSG_HOST,
840   DPMSG_SESSIONLOST, *LPDPMSG_SESSIONLOST;
841
842 typedef struct tagDPMSG_CREATEPLAYERORGROUP
843 {
844    DWORD   dwType;           /* Use message type as described above */
845    DWORD   dwPlayerType;     /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */
846    DPID    dpId;             /* ID of the player/group */
847    DWORD   dwCurrentPlayers; /* Current number of players/groups in session */
848    LPVOID  lpData;           /* Pointer to data */
849    DWORD   dwDataSize;       /* Size of data */
850    DPNAME  dpnName;          /* Name info */
851
852    /* dpIdParent and dwFlags are only valid in DirectPlay3 and later. What
853     * does that mean about the message size before? -PH */ 
854    DPID   dpIdParent;  /* id of parent group */
855    DWORD  dwFlags;     /* Flags for the player/group */ 
856 } DPMSG_CREATEPLAYERORGROUP, *LPDPMSG_CREATEPLAYERORGROUP;
857
858 typedef struct tagDPMSG_DESTROYPLAYERORGROUP
859 {
860    DWORD   dwType;           /* Use message type as described above */
861    DWORD   dwPlayerType;     /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */
862    DPID    dpId;             /* ID of player/group to be deleted */
863    LPVOID  lpLocalData;      /* Pointer to local data */
864    DWORD   dwLocalDataSize;  /* Sizeof local data */
865    LPVOID  lpRemoteData;     /* Pointer to remote data */
866    DWORD   dwRemoteDataSize; /* Sizeof remote data */
867
868    /* dpnName, dpIdParent and dwFlags are only valid in DirectPlay3 and later. What
869     * does that mean about the message size before? -PH */
870    DPNAME  dpnName;     /* Name info */
871    DPID    dpIdParent;  /* id of parent group */
872    DWORD   dwFlags;     /* Flags for the player/group */
873 } DPMSG_DESTROYPLAYERORGROUP, *LPDPMSG_DESTROYPLAYERORGROUP;
874
875 /* NOTE: DPMSG_ADDPLAYERTOGROUP and DPMSG_DELETEPLAYERFROMGROUP are the same */
876 typedef struct tagDPMSG_ADDPLAYERTOGROUP
877 {
878    DWORD  dwType;      /* Use message type as described above */
879    DPID   dpIdGroup;   /* Group ID to add player into */
880    DPID   dpIdPlayer;  /* ID of player to add */
881 } DPMSG_ADDPLAYERTOGROUP,      *LPDPMSG_ADDPLAYERTOGROUP, 
882   DPMSG_DELETEPLAYERFROMGROUP, *LPDPMSG_DELETEPLAYERFROMGROUP; 
883
884 /* NOTE: DPMSG_ADDGROUPTOGROUP and DPMSG_DELETEGROUPFROMGROUP are the same */
885 typedef struct tagDPMSG_ADDGROUPTOGROUP
886 {
887    DWORD  dwType;          /* Use message type as described above */
888    DPID   dpIdParentGroup; /* Group ID to add group into */
889    DPID   dpIdGroup;       /* ID of group to add */
890 } DPMSG_ADDGROUPTOGROUP,      *LPDPMSG_ADDGROUPTOGROUP,
891   DPMSG_DELETEGROUPFROMGROUP, *LPDPMSG_DELETEGROUPFROMGROUP;
892
893 typedef struct tagDPMSG_SETPLAYERORGROUPDATA
894 {
895    DWORD   dwType;       /* Use message type as described above */
896    DWORD   dwPlayerType; /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */ 
897    DPID    dpId;         /* ID of player/group */
898    LPVOID  lpData;       /* Pointer to data */
899    DWORD   dwDataSize;   /* Size of data */
900 } DPMSG_SETPLAYERORGROUPDATA, *LPDPMSG_SETPLAYERORGROUPDATA;
901
902 typedef struct tagDPMSG_SETPLAYERORGROUPNAME
903 {
904    DWORD  dwType;       /* Use message type as described above */
905    DWORD  dwPlayerType; /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */
906    DPID   dpId;         /* ID of player/group */
907    DPNAME dpnName;      /* New name */
908 } DPMSG_SETPLAYERORGROUPNAME, *LPDPMSG_SETPLAYERORGROUPNAME;
909
910 typedef struct tagDPMSG_SETSESSIONDESC
911 {
912    DWORD           dwType; /* Use message type as described above */
913    DPSESSIONDESC2  dpDesc; /* New session desc */
914 } DPMSG_SETSESSIONDESC, *LPDPMSG_SETSESSIONDESC;
915
916 typedef struct tagDPMSG_SECUREMESSAGE
917 {
918    DWORD   dwType;     /* Use message type as described above */
919    DWORD   dwFlags;    /* Signed/Encrypted */
920    DPID    dpIdFrom;   /* ID of from player */
921    LPVOID  lpData;     /* Message sent */
922    DWORD   dwDataSize; /* Size of message */
923 } DPMSG_SECUREMESSAGE, *LPDPMSG_SECUREMESSAGE;
924
925 typedef struct tagDPMSG_STARTSESSION
926 {
927    DWORD            dwType; /* Use message type as described above */
928    LPDPLCONNECTION  lpConn; /* DPLCONNECTION structure */
929 } DPMSG_STARTSESSION, *LPDPMSG_STARTSESSION;
930
931 typedef struct tagDPMSG_CHAT
932 {
933    DWORD     dwType;       /* Use message type as described above */
934    DWORD     dwFlags;      /* Message flags */
935    DPID      idFromPlayer; /* ID of sender */
936    DPID      idToPlayer;   /* ID of who msg is for */
937    DPID      idToGroup;    /* ID of what group msg is for */
938    LPDPCHAT  lpChat;       /* Chat message */
939 } DPMSG_CHAT, *LPDPMSG_CHAT;
940
941 typedef struct tagDPMSG_SETGROUPOWNER
942 {
943    DWORD  dwType;     /* Use message type as described above */
944    DPID   idGroup;    /* Group ID */
945    DPID   idNewOwner; /* ID of player who now owns group */
946    DPID   idOldOwner; /* ID of player who used to own group */
947 } DPMSG_SETGROUPOWNER, *LPDPMSG_SETGROUPOWNER;
948
949 typedef struct
950 {
951    DWORD    dwType;      /* Use message type as described above */
952    DPID     idFrom;      /* ID from */
953    DPID     idTo;        /* ID to */ 
954    DWORD    dwFlags;    
955    DWORD    dwPriority;
956    DWORD    dwTimeout;
957    LPVOID   lpvContext;
958    DWORD    dwMsgID;
959    HRESULT  hr;
960    DWORD    dwSendTime;  /* When sent ? */ 
961 } DPMSG_SENDCOMPLETE, *LPDPMSG_SENDCOMPLETE;
962
963
964
965 #ifdef __cplusplus
966 } /* extern "C" */
967 #endif /* defined(__cplusplus) */
968
969 #endif /* __WINE_DPLAY_H */