The new filedialog stuff does not handle template. So do not call if
[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 typedef const GUID   *LPCGUID;
346 typedef const DPNAME *LPCDPNAME;
347
348 typedef BOOL (CALLBACK* LPDPENUMCONNECTIONSCALLBACK)(
349     LPCGUID     lpguidSP,
350     LPVOID      lpConnection,
351     DWORD       dwConnectionSize,
352     LPCDPNAME   lpName,
353     DWORD       dwFlags,
354     LPVOID      lpContext);
355
356 typedef BOOL (CALLBACK* LPDPENUMSESSIONSCALLBACK)(
357     LPDPSESSIONDESC lpDPSessionDesc,
358     LPVOID      lpContext,
359     LPDWORD     lpdwTimeOut,
360     DWORD       dwFlags);
361
362
363 extern HRESULT WINAPI DirectPlayEnumerateA( LPDPENUMDPCALLBACKA, LPVOID );
364 extern HRESULT WINAPI DirectPlayEnumerateW( LPDPENUMDPCALLBACKW, LPVOID );
365 extern HRESULT WINAPI DirectPlayCreate( LPGUID lpGUID, LPDIRECTPLAY2 *lplpDP, IUnknown *pUnk);
366
367 typedef BOOL (CALLBACK* LPDPENUMPLAYERSCALLBACK)(
368     DPID   dpId,
369     LPSTR  lpFriendlyName,
370     LPSTR  lpFormalName,
371     DWORD  dwFlags,
372     LPVOID          lpContext );
373
374 typedef BOOL (CALLBACK* LPDPENUMPLAYERSCALLBACK2)(
375     DPID            dpId,
376     DWORD           dwPlayerType,
377     LPCDPNAME       lpName,
378     DWORD           dwFlags,
379     LPVOID          lpContext );
380
381 typedef BOOL (CALLBACK* LPDPENUMSESSIONSCALLBACK2)(
382     LPCDPSESSIONDESC2   lpThisSD,
383     LPDWORD             lpdwTimeOut,
384     DWORD               dwFlags,
385     LPVOID              lpContext );
386
387 #define DPESC_TIMEDOUT          0x00000001
388
389 #include "poppack.h"
390
391 /*****************************************************************************
392  * IDirectPlay interface
393  */
394 #define ICOM_INTERFACE IDirectPlay
395 #define IDirectPlay_METHODS \
396     ICOM_METHOD2(HRESULT,AddPlayerToGroup,      DPID,idGroup, DPID,idPlayer) \
397     ICOM_METHOD (HRESULT,Close) \
398     ICOM_METHOD4(HRESULT,CreatePlayer,          LPDPID,lpidPlayer, LPSTR,lpPlayerName, LPSTR,, LPHANDLE,) \
399     ICOM_METHOD3(HRESULT,CreateGroup,           LPDPID,lpidGroup, LPSTR,lpGroupName, LPSTR,) \
400     ICOM_METHOD2(HRESULT,DeletePlayerFromGroup, DPID,idGroup, DPID,idPlayer) \
401     ICOM_METHOD1(HRESULT,DestroyPlayer,         DPID,idPlayer) \
402     ICOM_METHOD1(HRESULT,DestroyGroup,          DPID,idGroup) \
403     ICOM_METHOD1(HRESULT,EnableNewPlayers,      BOOL,) \
404     ICOM_METHOD4(HRESULT,EnumGroupPlayers,      DPID,idGroup, LPDPENUMPLAYERSCALLBACK,lpEnumPlayersCallback, LPVOID,lpContext, DWORD,dwFlags) \
405     ICOM_METHOD4(HRESULT,EnumGroups,            DWORD,, LPDPENUMPLAYERSCALLBACK,lpEnumPlayersCallback, LPVOID,lpContext, DWORD,dwFlags) \
406     ICOM_METHOD4(HRESULT,EnumPlayers,           DWORD,, LPDPENUMPLAYERSCALLBACK,lpEnumPlayersCallback, LPVOID,lpContext, DWORD,dwFlags) \
407     ICOM_METHOD5(HRESULT,EnumSessions,          LPDPSESSIONDESC,lpsd, DWORD,dwTimeout, LPDPENUMSESSIONSCALLBACK,lpEnumSessionsCallback, LPVOID,lpContext, DWORD,dwFlags) \
408     ICOM_METHOD1(HRESULT,GetCaps,               LPDPCAPS,lpDPCaps) \
409     ICOM_METHOD2(HRESULT,GetMessageCount,       DPID,idPlayer, LPDWORD,lpdwCount) \
410     ICOM_METHOD2(HRESULT,GetPlayerCaps,         DPID,idPlayer, LPDPCAPS,lpPlayerCaps) \
411     ICOM_METHOD5(HRESULT,GetPlayerName,         DPID,idPlayer, LPSTR,, LPDWORD,, LPSTR,, LPDWORD,) \
412     ICOM_METHOD1(HRESULT,Initialize,            LPGUID,lpGUID) \
413     ICOM_METHOD1(HRESULT,Open,                  LPDPSESSIONDESC,lpsd) \
414     ICOM_METHOD5(HRESULT,Receive,               LPDPID,lpidFrom, LPDPID,lpidTo, DWORD,dwFlags, LPVOID,lpData, LPDWORD,lpdwDataSize) \
415     ICOM_METHOD1(HRESULT,SaveSession,           LPSTR,) \
416     ICOM_METHOD5(HRESULT,Send,                  DPID,idFrom, DPID,idTo, DWORD,dwFlags, LPVOID,lpData, DWORD,dwDataSize) \
417     ICOM_METHOD3(HRESULT,SetPlayerName,         DPID,idPlayer, LPSTR,lpPlayerName, LPSTR,)
418 #define IDirectPlay_IMETHODS \
419     IUnknown_IMETHODS \
420     IDirectPlay_METHODS
421 ICOM_DEFINE(IDirectPlay,IUnknown)
422 #undef ICOM_INTERFACE
423
424     /*** IUnknown methods ***/
425 #define IDirectPlay_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
426 #define IDirectPlay_AddRef(p)             ICOM_CALL (AddRef,p)
427 #define IDirectPlay_Release(p)            ICOM_CALL (Release,p)
428 /*** IDirectPlay methods ***/
429 #define IDirectPlay_AddPlayerToGroup(p,a,b)      ICOM_CALL2(AddPlayerToGroup,p,a,b)
430 #define IDirectPlay_Close(p)                     ICOM_CALL (Close,p)
431 #define IDirectPlay_CreatePlayer(p,a,b,c,d)      ICOM_CALL4(CreatePlayer,p,a,b,c,d)
432 #define IDirectPlay_CreateGroup(p,a,b,c)         ICOM_CALL3(CreateGroup,p,a,b,c)
433 #define IDirectPlay_DeletePlayerFromGroup(p,a,b) ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
434 #define IDirectPlay_DestroyPlayer(p,a)           ICOM_CALL1(DestroyPlayer,p,a)
435 #define IDirectPlay_DestroyGroup(p,a)            ICOM_CALL1(DestroyGroup,p,a)
436 #define IDirectPlay_EnableNewPlayers(p,a)        ICOM_CALL1(EnableNewPlayers,p,a)
437 #define IDirectPlay_EnumGroupPlayers(p,a,b,c,d)  ICOM_CALL4(EnumGroupPlayers,p,a,b,c,d)
438 #define IDirectPlay_EnumGroups(p,a,b,c,d)        ICOM_CALL4(EnumGroups,p,a,b,c,d)
439 #define IDirectPlay_EnumPlayers(p,a,b,c,d)       ICOM_CALL4(EnumPlayers,p,a,b,c,d)
440 #define IDirectPlay_EnumSessions(p,a,b,c,d,e)    ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
441 #define IDirectPlay_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
442 #define IDirectPlay_GetMessageCount(p,a,b)       ICOM_CALL2(GetMessageCount,p,a,b)
443 #define IDirectPlay_GetPlayerCaps(p,a,b)         ICOM_CALL2(GetPlayerCaps,p,a,b)
444 #define IDirectPlay_GetPlayerName(p,a,b,c,d,e)   ICOM_CALL5(GetPlayerName,p,a,b,c,d,e)
445 #define IDirectPlay_Initialize(p,a)              ICOM_CALL1(Initialize,p,a)
446 #define IDirectPlay_Open(p,a)                    ICOM_CALL1(Open,p,a)
447 #define IDirectPlay_Receive(p,a,b,c,d,e)         ICOM_CALL5(Receive,p,a,b,c,d,e)
448 #define IDirectPlay_SaveSession(p,a)             ICOM_CALL1(SaveSession,p,a)
449 #define IDirectPlay_Send(p,a,b,c,d,e)            ICOM_CALL5(Send,p,a,b,c,d,e)
450 #define IDirectPlay_SetPlayerName(p,a,b,c)       ICOM_CALL3(SetPlayerName,p,a,b,c)
451
452
453 /*****************************************************************************
454  * IDirectPlay2 and IDirectPlay2A interface
455  */
456 #define ICOM_INTERFACE IDirectPlay2
457 #define IDirectPlay2_METHODS \
458     ICOM_METHOD2(HRESULT,AddPlayerToGroup,      DPID,idGroup, DPID,idPlayer) \
459     ICOM_METHOD (HRESULT,Close) \
460     ICOM_METHOD5(HRESULT,CreateGroup,           LPDPID,lpidGroup, LPDPNAME,lpGroupName, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
461     ICOM_METHOD6(HRESULT,CreatePlayer,          LPDPID,lpidPlayer, LPDPNAME,lpPlayerName, HANDLE,hEvent, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
462     ICOM_METHOD2(HRESULT,DeletePlayerFromGroup, DPID,idGroup, DPID,idPlayer) \
463     ICOM_METHOD1(HRESULT,DestroyGroup,          DPID,idGroup) \
464     ICOM_METHOD1(HRESULT,DestroyPlayer,         DPID,idPlayer) \
465     ICOM_METHOD5(HRESULT,EnumGroupPlayers,      DPID,idGroup, LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumPlayersCallback2, LPVOID,lpContext, DWORD,dwFlags) \
466     ICOM_METHOD4(HRESULT,EnumGroups,            LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumPlayersCallback2, LPVOID,lpContext, DWORD,dwFlags) \
467     ICOM_METHOD4(HRESULT,EnumPlayers,           LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumPlayersCallback2, LPVOID,lpContext, DWORD,dwFlags) \
468     ICOM_METHOD5(HRESULT,EnumSessions,          LPDPSESSIONDESC2,lpsd, DWORD,dwTimeout, LPDPENUMSESSIONSCALLBACK2,lpEnumSessionsCallback2, LPVOID,lpContext, DWORD,dwFlags) \
469     ICOM_METHOD2(HRESULT,GetCaps,               LPDPCAPS,lpDPCaps, DWORD,dwFlags) \
470     ICOM_METHOD4(HRESULT,GetGroupData,          DPID,idGroup, LPVOID,lpData, LPDWORD,lpdwDataSize, DWORD,dwFlags) \
471     ICOM_METHOD3(HRESULT,GetGroupName,          DPID,idGroup, LPVOID,lpData, LPDWORD,lpdwDataSize) \
472     ICOM_METHOD2(HRESULT,GetMessageCount,       DPID,idPlayer, LPDWORD,lpdwCount) \
473     ICOM_METHOD3(HRESULT,GetPlayerAddress,      DPID,idPlayer, LPVOID,lpData, LPDWORD,lpdwDataSize) \
474     ICOM_METHOD3(HRESULT,GetPlayerCaps,         DPID,idPlayer, LPDPCAPS,lpPlayerCaps, DWORD,dwFlags) \
475     ICOM_METHOD4(HRESULT,GetPlayerData,         DPID,idPlayer, LPVOID,lpData, LPDWORD,lpdwDataSize, DWORD,dwFlags) \
476     ICOM_METHOD3(HRESULT,GetPlayerName,         DPID,idPlayer, LPVOID,lpData, LPDWORD,lpdwDataSize) \
477     ICOM_METHOD2(HRESULT,GetSessionDesc,        LPVOID,lpData, LPDWORD,lpdwDataSize) \
478     ICOM_METHOD1(HRESULT,Initialize,            LPGUID,lpGUID) \
479     ICOM_METHOD2(HRESULT,Open,                  LPDPSESSIONDESC2,lpsd, DWORD,dwFlags) \
480     ICOM_METHOD5(HRESULT,Receive,               LPDPID,lpidFrom, LPDPID,lpidTo, DWORD,dwFlags, LPVOID,lpData, LPDWORD,lpdwDataSize) \
481     ICOM_METHOD5(HRESULT,Send,                  DPID,idFrom, DPID,idTo, DWORD,dwFlags, LPVOID,lpData, DWORD,dwDataSize) \
482     ICOM_METHOD4(HRESULT,SetGroupData,          DPID,idGroup, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
483     ICOM_METHOD3(HRESULT,SetGroupName,          DPID,idGroup, LPDPNAME,lpGroupName, DWORD,dwFlags) \
484     ICOM_METHOD4(HRESULT,SetPlayerData,         DPID,idPlayer, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
485     ICOM_METHOD3(HRESULT,SetPlayerName,         DPID,idPlayer, LPDPNAME,lpPlayerName, DWORD,dwFlags) \
486     ICOM_METHOD2(HRESULT,SetSessionDesc,        LPDPSESSIONDESC2,lpSessDesc, DWORD,dwFlags)
487 #define IDirectPlay2_IMETHODS \
488     IUnknown_IMETHODS \
489     IDirectPlay2_METHODS
490 ICOM_DEFINE(IDirectPlay2,IUnknown)
491 #undef ICOM_INTERFACE
492
493 /*** IUnknown methods ***/
494 #define IDirectPlay2_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
495 #define IDirectPlay2_AddRef(p)             ICOM_CALL (AddRef,p)
496 #define IDirectPlay2_Release(p)            ICOM_CALL (Release,p)
497     /*** IDirectPlay2 methods ***/
498 #define IDirectPlay2_AddPlayerToGroup(p,a,b)       ICOM_CALL2(AddPlayerToGroup,p,a,b)
499 #define IDirectPlay2_Close(p)                      ICOM_CALL (Close,p)
500 #define IDirectPlay2_CreateGroup(p,a,b,c,d,e)      ICOM_CALL5(CreateGroup,p,a,b,c,d,e)
501 #define IDirectPlay2_CreatePlayer(p,a,b,c,d,e,f)   ICOM_CALL6(CreatePlayer,p,a,b,c,d,e,f)
502 #define IDirectPlay2_DeletePlayerFromGroup(p,a,b)  ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
503 #define IDirectPlay2_DestroyGroup(p,a)             ICOM_CALL1(DestroyGroup,p,a)
504 #define IDirectPlay2_DestroyPlayer(p,a)            ICOM_CALL1(DestroyPlayer,p,a)
505 #define IDirectPlay2_EnumGroupPlayers(p,a,b,c,d,e) ICOM_CALL5(EnumGroupPlayers,p,a,b,c,d,e)
506 #define IDirectPlay2_EnumGroups(p,a,b,c,d)         ICOM_CALL4(EnumGroups,p,a,b,c,d)
507 #define IDirectPlay2_EnumPlayers(p,a,b,c,d)        ICOM_CALL4(EnumPlayers,p,a,b,c,d)
508 #define IDirectPlay2_EnumSessions(p,a,b,c,d,e)     ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
509 #define IDirectPlay2_GetCaps(p,a,b)                ICOM_CALL2(GetCaps,p,a,b)
510 #define IDirectPlay2_GetGroupData(p,a,b,c,d)       ICOM_CALL4(GetGroupData,p,a,b,c,d)
511 #define IDirectPlay2_GetGroupName(p,a,b,c)         ICOM_CALL3(GetGroupName,p,a,b,c)
512 #define IDirectPlay2_GetMessageCount(p,a,b)        ICOM_CALL2(GetMessageCount,p,a,b)
513 #define IDirectPlay2_GetPlayerAddress(p,a,b,c)     ICOM_CALL3(GetPlayerAddress,p,a,b,c)
514 #define IDirectPlay2_GetPlayerCaps(p,a,b,c)        ICOM_CALL3(GetPlayerCaps,p,a,b,c)
515 #define IDirectPlay2_GetPlayerData(p,a,b,c,d)      ICOM_CALL4(GetPlayerData,p,a,b,c,d)
516 #define IDirectPlay2_GetPlayerName(p,a,b,c)        ICOM_CALL3(GetPlayerName,p,a,b,c)
517 #define IDirectPlay2_GetSessionDesc(p,a,b)         ICOM_CALL2(GetSessionDesc,p,a,b)
518 #define IDirectPlay2_Initialize(p,a)               ICOM_CALL1(Initialize,p,a)
519 #define IDirectPlay2_Open(p,a,b)                   ICOM_CALL2(Open,p,a,b)
520 #define IDirectPlay2_Receive(p,a,b,c,d,e)          ICOM_CALL5(Receive,p,a,b,c,d,e)
521 #define IDirectPlay2_Send(p,a,b,c,d,e)             ICOM_CALL5(Send,p,a,b,c,d,e)
522 #define IDirectPlay2_SetGroupData(p,a,b,c,d)       ICOM_CALL4(SetGroupData,p,a,b,c,d)
523 #define IDirectPlay2_SetGroupName(p,a,b,c)         ICOM_CALL3(SetGroupName,p,a,b,c)
524 #define IDirectPlay2_SetPlayerData(p,a,b,c,d)      ICOM_CALL4(SetPlayerData,p,a,b,c,d)
525 #define IDirectPlay2_SetPlayerName(p,a,b,c)        ICOM_CALL3(SetPlayerName,p,a,b,c)
526 #define IDirectPlay2_SetSessionDesc(p,a,b)         ICOM_CALL2(SetSessionDesc,p,a,b)
527
528
529 /*****************************************************************************
530  * IDirectPlay3 and IDirectPlay3A interface
531  */
532 #define ICOM_INTERFACE IDirectPlay3
533 #define IDirectPlay3_METHODS \
534     ICOM_METHOD2(HRESULT,AddGroupToGroup,            DPID,idParentGroup, DPID,idGroup) \
535     ICOM_METHOD6(HRESULT,CreateGroupInGroup,         DPID,idParentGroup, LPDPID,lpidGroup, LPDPNAME,lpGroupName, LPVOID,lpData, DWORD,dwDataSize, DWORD,dwFlags) \
536     ICOM_METHOD2(HRESULT,DeleteGroupFromGroup,       DPID,idParentGroup, DPID,idGroup) \
537     ICOM_METHOD4(HRESULT,EnumConnections,            LPCGUID,lpguidApplication, LPDPENUMCONNECTIONSCALLBACK,lpEnumCallback, LPVOID,lpContext, DWORD,dwFlags) \
538     ICOM_METHOD5(HRESULT,EnumGroupsInGroup,          DPID,idGroup, LPGUID,lpguidInstance, LPDPENUMPLAYERSCALLBACK2,lpEnumCallback, LPVOID,lpContext, DWORD,dwFlags) \
539     ICOM_METHOD4(HRESULT,GetGroupConnectionSettings, DWORD,dwFlags, DPID,idGroup, LPVOID,lpData, LPDWORD,lpdwDataSize) \
540     ICOM_METHOD2(HRESULT,InitializeConnection,       LPVOID,lpConnection, DWORD,dwFlags) \
541     ICOM_METHOD4(HRESULT,SecureOpen,                 LPCDPSESSIONDESC2,lpsd, DWORD,dwFlags, LPCDPSECURITYDESC,lpSecurity, LPCDPCREDENTIALS,lpCredentials) \
542     ICOM_METHOD4(HRESULT,SendChatMessage,            DPID,idFrom, DPID,idTo, DWORD,dwFlags, LPDPCHAT,lpChatMessage) \
543     ICOM_METHOD3(HRESULT,SetGroupConnectionSettings, DWORD,dwFlags, DPID,idGroup, LPDPLCONNECTION,lpConnection) \
544     ICOM_METHOD2(HRESULT,StartSession,               DWORD,dwFlags, DPID,idGroup) \
545     ICOM_METHOD2(HRESULT,GetGroupFlags,              DPID,idGroup, LPDWORD,lpdwFlags) \
546     ICOM_METHOD2(HRESULT,GetGroupParent,             DPID,idGroup, LPDPID,lpidParent) \
547     ICOM_METHOD4(HRESULT,GetPlayerAccount,           DPID,idPlayer, DWORD,dwFlags, LPVOID,lpData, LPDWORD,lpdwDataSize) \
548     ICOM_METHOD2(HRESULT,GetPlayerFlags,             DPID,idPlayer, LPDWORD,lpdwFlags)
549 #define IDirectPlay3_IMETHODS \
550     IDirectPlay2_IMETHODS \
551     IDirectPlay3_METHODS
552 ICOM_DEFINE(IDirectPlay3,IDirectPlay2)
553 #undef ICOM_INTERFACE
554
555 /*** IUnknown methods ***/
556 #define IDirectPlay3_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
557 #define IDirectPlay3_AddRef(p)             ICOM_CALL (AddRef,p)
558 #define IDirectPlay3_Release(p)            ICOM_CALL (Release,p)
559 /*** IDirectPlay2 methods ***/
560 #define IDirectPlay3_AddPlayerToGroup(p,a,b)       ICOM_CALL2(AddPlayerToGroup,p,a,b)
561 #define IDirectPlay3_Close(p)                      ICOM_CALL (Close,p)
562 #define IDirectPlay3_CreateGroup(p,a,b,c,d,e)      ICOM_CALL5(CreateGroup,p,a,b,c,d,e)
563 #define IDirectPlay3_CreatePlayer(p,a,b,c,d,e,f)   ICOM_CALL6(CreatePlayer,p,a,b,c,d,e,f)
564 #define IDirectPlay3_DeletePlayerFromGroup(p,a,b)  ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
565 #define IDirectPlay3_DestroyGroup(p,a)             ICOM_CALL1(DestroyGroup,p,a)
566 #define IDirectPlay3_DestroyPlayer(p,a)            ICOM_CALL1(DestroyPlayer,p,a)
567 #define IDirectPlay3_EnumGroupPlayers(p,a,b,c,d,e) ICOM_CALL5(EnumGroupPlayers,p,a,b,c,d,e)
568 #define IDirectPlay3_EnumGroups(p,a,b,c,d)         ICOM_CALL4(EnumGroups,p,a,b,c,d)
569 #define IDirectPlay3_EnumPlayers(p,a,b,c,d)        ICOM_CALL4(EnumPlayers,p,a,b,c,d)
570 #define IDirectPlay3_EnumSessions(p,a,b,c,d,e)     ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
571 #define IDirectPlay3_GetCaps(p,a,b)                ICOM_CALL2(GetCaps,p,a,b)
572 #define IDirectPlay3_GetGroupData(p,a,b,c,d)       ICOM_CALL4(GetGroupData,p,a,b,c,d)
573 #define IDirectPlay3_GetGroupName(p,a,b,c)         ICOM_CALL3(GetGroupName,p,a,b,c)
574 #define IDirectPlay3_GetMessageCount(p,a,b)        ICOM_CALL2(GetMessageCount,p,a,b)
575 #define IDirectPlay3_GetPlayerAddress(p,a,b,c)     ICOM_CALL3(GetPlayerAddress,p,a,b,c)
576 #define IDirectPlay3_GetPlayerCaps(p,a,b,c)        ICOM_CALL3(GetPlayerCaps,p,a,b,c)
577 #define IDirectPlay3_GetPlayerData(p,a,b,c,d)      ICOM_CALL4(GetPlayerData,p,a,b,c,d)
578 #define IDirectPlay3_GetPlayerName(p,a,b,c)        ICOM_CALL3(GetPlayerName,p,a,b,c)
579 #define IDirectPlay3_GetSessionDesc(p,a,b)         ICOM_CALL2(GetSessionDesc,p,a,b)
580 #define IDirectPlay3_Initialize(p,a)               ICOM_CALL1(Initialize,p,a)
581 #define IDirectPlay3_Open(p,a,b)                   ICOM_CALL2(Open,p,a,b)
582 #define IDirectPlay3_Receive(p,a,b,c,d,e)          ICOM_CALL5(Receive,p,a,b,c,d,e)
583 #define IDirectPlay3_Send(p,a,b,c,d,e)             ICOM_CALL5(Send,p,a,b,c,d,e)
584 #define IDirectPlay3_SetGroupData(p,a,b,c,d)       ICOM_CALL4(SetGroupData,p,a,b,c,d)
585 #define IDirectPlay3_SetGroupName(p,a,b,c)         ICOM_CALL3(SetGroupName,p,a,b,c)
586 #define IDirectPlay3_SetPlayerData(p,a,b,c,d)      ICOM_CALL4(SetPlayerData,p,a,b,c,d)
587 #define IDirectPlay3_SetPlayerName(p,a,b,c)        ICOM_CALL3(SetPlayerName,p,a,b,c)
588 #define IDirectPlay3_SetSessionDesc(p,a,b)         ICOM_CALL2(SetSessionDesc,p,a,b)
589 /*** IDirectPlay3 methods ***/
590 #define IDirectPlay3_AddGroupToGroup(p,a,b)                ICOM_CALL2(AddGroupToGroup,p,a,b)
591 #define IDirectPlay3_CreateGroupInGroup(p,a,b,c,d,e,f)     ICOM_CALL6(CreateGroupInGroup,p,a,b,c,d,e,f)
592 #define IDirectPlay3_DeleteGroupFromGroup(p,a,b)           ICOM_CALL2(DeleteGroupFromGroup,p,a,b)
593 #define IDirectPlay3_EnumConnections(p,a,b,c,d)            ICOM_CALL4(EnumConnections,p,a,b,c,d)
594 #define IDirectPlay3_EnumGroupsInGroup(p,a,b,c,d,e)        ICOM_CALL5(EnumGroupsInGroup,p,a,b,c,d,e)
595 #define IDirectPlay3_GetGroupConnectionSettings(p,a,b,c,d) ICOM_CALL4(GetGroupConnectionSettings,p,a,b,c,d)
596 #define IDirectPlay3_InitializeConnection(p,a,b)           ICOM_CALL2(InitializeConnection,p,a,b)
597 #define IDirectPlay3_SecureOpen(p,a,b,c,d)                 ICOM_CALL4(SecureOpen,p,a,b,c,d)
598 #define IDirectPlay3_SendChatMessage(p,a,b,c,d)            ICOM_CALL4(SendChatMessage,p,a,b,c,d)
599 #define IDirectPlay3_SetGroupConnectionSettings(p,a,b,c)   ICOM_CALL3(SetGroupConnectionSettings,p,a,b,c)
600 #define IDirectPlay3_StartSession(p,a,b)                   ICOM_CALL2(StartSession,p,a,b)
601 #define IDirectPlay3_GetGroupFlags(p,a,b)                  ICOM_CALL2(GetGroupFlags,p,a,b)
602 #define IDirectPlay3_GetGroupParent(p,a,b)                 ICOM_CALL2(GetGroupParent,p,a,b)
603 #define IDirectPlay3_GetPlayerAccount(p,a,b,c,d)           ICOM_CALL4(GetPlayerAccount,p,a,b,c,d)
604 #define IDirectPlay3_GetPlayerFlags(p,a,b)                 ICOM_CALL2(GetPlayerFlags,p,a,b)
605
606 /*****************************************************************************
607  * IDirectPlay4 and IDirectPlay4A interface 
608  */
609 #define ICOM_INTERFACE IDirectPlay4
610 #define IDirectPlay4_METHODS \
611     ICOM_METHOD2( HRESULT, GetGroupOwner,        DPID,, LPDPID, ) \
612     ICOM_METHOD2( HRESULT, SetGroupOwner,        DPID,, DPID, ) \
613     ICOM_METHOD9( HRESULT, SendEx,               DPID,, DPID,, DWORD,, LPVOID,, DWORD,, DWORD,, DWORD,, LPVOID,, LPDWORD, ) \
614     ICOM_METHOD5( HRESULT, GetMessageQueue,      DPID,, DPID,, DWORD,, LPDWORD,, LPDWORD, ) \
615     ICOM_METHOD2( HRESULT, CancelMessage,        DWORD,, DWORD, ) \
616     ICOM_METHOD3( HRESULT, CancelPriority,       DWORD,, DWORD,, DWORD, )
617
618 #define IDirectPlay4_IMETHODS \
619     IDirectPlay3_IMETHODS \
620     IDirectPlay4_METHODS 
621 ICOM_DEFINE(IDirectPlay4,IDirectPlay3)
622 #undef ICOM_INTERFACE
623
624 /*** IUnknown methods ***/
625 #define IDirectPlayX_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
626 #define IDirectPlayX_AddRef(p)             ICOM_CALL (AddRef,p)
627 #define IDirectPlayX_Release(p)            ICOM_CALL (Release,p)
628 /*** IDirectPlay2 methods ***/
629 #define IDirectPlayX_AddPlayerToGroup(p,a,b)       ICOM_CALL2(AddPlayerToGroup,p,a,b)
630 #define IDirectPlayX_Close(p)                      ICOM_CALL (Close,p)
631 #define IDirectPlayX_CreateGroup(p,a,b,c,d,e)      ICOM_CALL5(CreateGroup,p,a,b,c,d,e)
632 #define IDirectPlayX_CreatePlayer(p,a,b,c,d,e,f)   ICOM_CALL6(CreatePlayer,p,a,b,c,d,e,f)
633 #define IDirectPlayX_DeletePlayerFromGroup(p,a,b)  ICOM_CALL2(DeletePlayerFromGroup,p,a,b)
634 #define IDirectPlayX_DestroyGroup(p,a)             ICOM_CALL1(DestroyGroup,p,a)
635 #define IDirectPlayX_DestroyPlayer(p,a)            ICOM_CALL1(DestroyPlayer,p,a)
636 #define IDirectPlayX_EnumGroupPlayers(p,a,b,c,d,e) ICOM_CALL5(EnumGroupPlayers,p,a,b,c,d,e)
637 #define IDirectPlayX_EnumGroups(p,a,b,c,d)         ICOM_CALL4(EnumGroups,p,a,b,c,d)
638 #define IDirectPlayX_EnumPlayers(p,a,b,c,d)        ICOM_CALL4(EnumPlayers,p,a,b,c,d)
639 #define IDirectPlayX_EnumSessions(p,a,b,c,d,e)     ICOM_CALL5(EnumSessions,p,a,b,c,d,e)
640 #define IDirectPlayX_GetCaps(p,a,b)                ICOM_CALL2(GetCaps,p,a,b)
641 #define IDirectPlayX_GetGroupData(p,a,b,c,d)       ICOM_CALL4(GetGroupData,p,a,b,c,d)
642 #define IDirectPlayX_GetGroupName(p,a,b,c)         ICOM_CALL3(GetGroupName,p,a,b,c)
643 #define IDirectPlayX_GetMessageCount(p,a,b)        ICOM_CALL2(GetMessageCount,p,a,b)
644 #define IDirectPlayX_GetPlayerAddress(p,a,b,c)     ICOM_CALL3(GetPlayerAddress,p,a,b,c)
645 #define IDirectPlayX_GetPlayerCaps(p,a,b,c)        ICOM_CALL3(GetPlayerCaps,p,a,b,c)
646 #define IDirectPlayX_GetPlayerData(p,a,b,c,d)      ICOM_CALL4(GetPlayerData,p,a,b,c,d)
647 #define IDirectPlayX_GetPlayerName(p,a,b,c)        ICOM_CALL3(GetPlayerName,p,a,b,c)
648 #define IDirectPlayX_GetSessionDesc(p,a,b)         ICOM_CALL2(GetSessionDesc,p,a,b)
649 #define IDirectPlayX_Initialize(p,a)               ICOM_CALL1(Initialize,p,a)
650 #define IDirectPlayX_Open(p,a,b)                   ICOM_CALL2(Open,p,a,b)
651 #define IDirectPlayX_Receive(p,a,b,c,d,e)          ICOM_CALL5(Receive,p,a,b,c,d,e)
652 #define IDirectPlayX_Send(p,a,b,c,d,e)             ICOM_CALL5(Send,p,a,b,c,d,e)
653 #define IDirectPlayX_SetGroupData(p,a,b,c,d)       ICOM_CALL4(SetGroupData,p,a,b,c,d)
654 #define IDirectPlayX_SetGroupName(p,a,b,c)         ICOM_CALL3(SetGroupName,p,a,b,c)
655 #define IDirectPlayX_SetPlayerData(p,a,b,c,d)      ICOM_CALL4(SetPlayerData,p,a,b,c,d)
656 #define IDirectPlayX_SetPlayerName(p,a,b,c)        ICOM_CALL3(SetPlayerName,p,a,b,c)
657 #define IDirectPlayX_SetSessionDesc(p,a,b)         ICOM_CALL2(SetSessionDesc,p,a,b)
658 /*** IDirectPlay3 methods ***/
659 #define IDirectPlayX_AddGroupToGroup(p,a,b)                ICOM_CALL2(AddGroupToGroup,p,a,b)
660 #define IDirectPlayX_CreateGroupInGroup(p,a,b,c,d,e,f)     ICOM_CALL6(CreateGroupInGroup,p,a,b,c,d,e,f)
661 #define IDirectPlayX_DeleteGroupFromGroup(p,a,b)           ICOM_CALL2(DeleteGroupFromGroup,p,a,b)
662 #define IDirectPlayX_EnumConnections(p,a,b,c,d)            ICOM_CALL4(EnumConnections,p,a,b,c,d)
663 #define IDirectPlayX_EnumGroupsInGroup(p,a,b,c,d,e)        ICOM_CALL5(EnumGroupsInGroup,p,a,b,c,d,e)
664 #define IDirectPlayX_GetGroupConnectionSettings(p,a,b,c,d) ICOM_CALL4(GetGroupConnectionSettings,p,a,b,c,d)
665 #define IDirectPlayX_InitializeConnection(p,a,b)           ICOM_CALL2(InitializeConnection,p,a,b)
666 #define IDirectPlayX_SecureOpen(p,a,b,c,d)                 ICOM_CALL4(SecureOpen,p,a,b,c,d)
667 #define IDirectPlayX_SendChatMessage(p,a,b,c,d)            ICOM_CALL4(SendChatMessage,p,a,b,c,d)
668 #define IDirectPlayX_SetGroupConnectionSettings(p,a,b,c)   ICOM_CALL3(SetGroupConnectionSettings,p,a,b,c)
669 #define IDirectPlayX_StartSession(p,a,b)                   ICOM_CALL2(StartSession,p,a,b)
670 #define IDirectPlayX_GetGroupFlags(p,a,b)                  ICOM_CALL2(GetGroupFlags,p,a,b)
671 #define IDirectPlayX_GetGroupParent(p,a,b)                 ICOM_CALL2(GetGroupParent,p,a,b)
672 #define IDirectPlayX_GetPlayerAccount(p,a,b,c,d)           ICOM_CALL4(GetPlayerAccount,p,a,b,c,d)
673 #define IDirectPlayX_GetPlayerFlags(p,a,b)                 ICOM_CALL2(GetPlayerFlags,p,a,b)
674 /*** IDirectPlay4 methods ***/
675 #define IDirectPlayX_GetGroupOwner(p,a,b)                  ICOM_CALL2(GetGroupOwner,p,a,b)
676 #define IDirectPlayX_SetGroupOwner(p,a,b)                  ICOM_CALL2(SetGroupOwner,p,a,b)
677 #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)
678 #define IDirectPlayX_GetMessageQueue(p,a,b,c,d,e)          ICOM_CALL5(GetMessageQueue,a,b,c,d,e)
679 #define IDirectPlayX_CancelMessage(p,a,b)                  ICOM_CALL2(CancelMessage,a,b)
680 #define IDirectPlayX_CancelPriority(p,a,b,c)               ICOM_CALL3(CancelPriority,a,b,c)
681
682
683 /* For DirectPlay::EnumConnections */
684 #define DPCONNECTION_DIRECTPLAY      0x00000001
685 #define DPCONNECTION_DIRECTPLAYLOBBY 0x00000002
686
687 /* For DirectPlay::EnumPlayers and DirectPlay::EnumGroups */
688 #define DPENUMPLAYERS_ALL           0x00000000
689 #define DPENUMPLAYERS_LOCAL         0x00000008
690 #define DPENUMPLAYERS_REMOTE        0x00000010
691 #define DPENUMPLAYERS_GROUP         0x00000020
692 #define DPENUMPLAYERS_SESSION       0x00000080
693 #define DPENUMPLAYERS_SERVERPLAYER  0x00000100
694 #define DPENUMPLAYERS_SPECTATOR     0x00000200
695 #define DPENUMPLAYERS_OWNER         0x00002000
696
697 #define DPENUMGROUPS_ALL            DPENUMPLAYERS_ALL
698 #define DPENUMGROUPS_LOCAL          DPENUMPLAYERS_LOCAL
699 #define DPENUMGROUPS_REMOTE         DPENUMPLAYERS_REMOTE
700 #define DPENUMGROUPS_SESSION        DPENUMPLAYERS_SESSION
701 #define DPENUMGROUPS_SHORTCUT       0x00000400
702 #define DPENUMGROUPS_STAGINGAREA    0x00000800
703 #define DPENUMGROUPS_HIDDEN         0x00001000
704
705
706 /* For DirectPlay::CreatePlayer */ 
707 #define DPPLAYER_SERVERPLAYER  DPENUMPLAYERS_SERVERPLAYER
708 #define DPPLAYER_SPECTATOR     DPENUMPLAYERS_SPECTATOR
709 #define DPPLAYER_LOCAL         DPENUMPLAYERS_LOCAL
710 #define DPPLAYER_OWNER         DPENUMPLAYERS_OWNER
711
712 /* For DirectPlay::CreateGroup */
713 #define DPGROUP_STAGINGAREA  DPENUMGROUPS_STAGINGAREA
714 #define DPGROUP_LOCAL        DPENUMGROUPS_LOCAL
715 #define DPGROUP_HIDDEN       DPENUMGROUPS_HIDDEN
716
717 /* For DirectPlay::EnumSessions */
718 #define DPENUMSESSIONS_AVAILABLE         0x00000001
719 #define DPENUMSESSIONS_ALL               0x00000002
720 #define DPENUMSESSIONS_ASYNC             0x00000010
721 #define DPENUMSESSIONS_STOPASYNC         0x00000020
722 #define DPENUMSESSIONS_PASSWORDREQUIRED  0x00000040
723 #define DPENUMSESSIONS_RETURNSTATUS      0x00000080
724
725 /* For DirectPlay::GetCaps and DirectPlay::GetPlayerCaps */
726 #define DPGETCAPS_GUARANTEED  0x00000001
727
728 /* For DirectPlay::GetGroupData and DirectPlay::GetPlayerData */
729 #define DPGET_REMOTE  0x00000000
730 #define DPGET_LOCAL   0x00000001
731
732 /* For DirectPlay::Receive */
733 #define DPRECEIVE_ALL         0x00000001
734 #define DPRECEIVE_TOPLAYER    0x00000002
735 #define DPRECEIVE_FROMPLAYER  0x00000004
736 #define DPRECEIVE_PEEK        0x00000008
737
738 /* For DirectPlay::Send */
739 #define DPSEND_NONGUARANTEED       0x00000000
740 #define DPSEND_GUARANTEED          0x00000001
741 #define DPSEND_HIGHPRIORITY        0x00000002
742 #define DPSEND_OPENSTREAM          0x00000008
743 #define DPSEND_CLOSESTREAM         0x00000010
744 #define DPSEND_SIGNED              0x00000020
745 #define DPSEND_ENCRYPTED           0x00000040
746 #define DPSEND_LOBBYSYSTEMMESSAGE  0x00000080
747 #define DPSEND_ASYNC               0x00000200
748 #define DPSEND_NOSENDCOMPLETEMSG   0x00000400
749
750 #define DPSEND_MAX_PRI       0x0000FFFF
751 #define DPSEND_MAX_PRIORITY  DPSEND_MAX_PRI
752
753
754 /* For  DirectPlay::SetGroupData, DirectPlay::SetGroupName, 
755  * DirectPlay::SetPlayerData, DirectPlay::SetPlayerName and 
756  * DirectPlay::SetSessionDesc.
757  */
758 #define DPSET_REMOTE      0x00000000
759 #define DPSET_LOCAL       0x00000001
760 #define DPSET_GUARANTEED  0x00000002
761
762 /* For DirectPlay::GetMessageQueue */
763 #define DPMESSAGEQUEUE_SEND    0x00000001
764 #define DPMESSAGEQUEUE_RECEIVE 0x00000002
765
766 /* DirectPlay::Connect */
767 #define DPCONNECT_RETURNSTATUS  (DPENUMSESSIONS_RETURNSTATUS)
768
769
770 /** DirectPlay system messages **/
771
772 /* A new player or group has been created in the session */
773 #define DPSYS_CREATEPLAYERORGROUP   0x0003
774
775 /* A player or group has been deleted from the session */
776 #define DPSYS_DESTROYPLAYERORGROUP  0x0005
777
778 /* A player has been added to a group */
779 #define DPSYS_ADDPLAYERTOGROUP      0x0007
780
781 /* A player has been deleted from a group */
782 #define DPSYS_DELETEPLAYERFROMGROUP 0x0021
783
784 /* Session lost for this object - ie lost contact with all players */
785 #define DPSYS_SESSIONLOST           0x0031
786
787 /* The current host has left the session */
788 #define DPSYS_HOST                  0x0101
789
790 /* Player or group data has changed */
791 #define DPSYS_SETPLAYERORGROUPDATA  0x0102
792
793 /* The name of a player or group has changed */
794 #define DPSYS_SETPLAYERORGROUPNAME  0x0103
795
796 /* The session description has changed */
797 #define DPSYS_SETSESSIONDESC        0x0104
798
799 /* A group has been added to a group */
800 #define DPSYS_ADDGROUPTOGROUP           0x0105
801
802 /* A group has been deleted from a group */
803 #define DPSYS_DELETEGROUPFROMGROUP      0x0106
804
805 /* A secure player to player message has arrived */
806 #define DPSYS_SECUREMESSAGE         0x0107
807
808 /* Start a new session */
809 #define DPSYS_STARTSESSION          0x0108
810
811 /* A chat message has arrived */
812 #define DPSYS_CHAT                  0x0109
813
814 /* The owner of a group has changed */
815 #define DPSYS_SETGROUPOWNER         0x010A
816
817 /* An async send is done (finished normally, failed or cancelled) */
818 #define DPSYS_SENDCOMPLETE          0x010d
819
820 /** DirectPlay System Messages **/ 
821
822 #define DPPLAYERTYPE_GROUP   0x00000000
823 #define DPPLAYERTYPE_PLAYER  0x00000001
824
825
826 /* NOTE: DPMSG_HOST and DPMSG_GENERIC share the same format */
827 typedef struct tagDPMSG_GENERIC
828 {
829    DWORD       dwType; /* Use message type as described above */
830 } DPMSG_GENERIC,     *LPDPMSG_GENERIC, 
831   DPMSG_HOST,        *LPDPMSG_HOST,
832   DPMSG_SESSIONLOST, *LPDPMSG_SESSIONLOST;
833
834 typedef struct tagDPMSG_CREATEPLAYERORGROUP
835 {
836    DWORD   dwType;           /* Use message type as described above */
837    DWORD   dwPlayerType;     /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */
838    DPID    dpId;             /* ID of the player/group */
839    DWORD   dwCurrentPlayers; /* Current number of players/groups in session */
840    LPVOID  lpData;           /* Pointer to data */
841    DWORD   dwDataSize;       /* Size of data */
842    DPNAME  dpnName;          /* Name info */
843
844    /* dpIdParent and dwFlags are only valid in DirectPlay3 and later. What
845     * does that mean about the message size before? -PH */ 
846    DPID   dpIdParent;  /* id of parent group */
847    DWORD  dwFlags;     /* Flags for the player/group */ 
848 } DPMSG_CREATEPLAYERORGROUP, *LPDPMSG_CREATEPLAYERORGROUP;
849
850 typedef struct tagDPMSG_DESTROYPLAYERORGROUP
851 {
852    DWORD   dwType;           /* Use message type as described above */
853    DWORD   dwPlayerType;     /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */
854    DPID    dpId;             /* ID of player/group to be deleted */
855    LPVOID  lpLocalData;      /* Pointer to local data */
856    DWORD   dwLocalDataSize;  /* Sizeof local data */
857    LPVOID  lpRemoteData;     /* Pointer to remote data */
858    DWORD   dwRemoteDataSize; /* Sizeof remote data */
859
860    /* dpnName, dpIdParent and dwFlags are only valid in DirectPlay3 and later. What
861     * does that mean about the message size before? -PH */
862    DPNAME  dpnName;     /* Name info */
863    DPID    dpIdParent;  /* id of parent group */
864    DWORD   dwFlags;     /* Flags for the player/group */
865 } DPMSG_DESTROYPLAYERORGROUP, *LPDPMSG_DESTROYPLAYERORGROUP;
866
867 /* NOTE: DPMSG_ADDPLAYERTOGROUP and DPMSG_DELETEPLAYERFROMGROUP are the same */
868 typedef struct tagDPMSG_ADDPLAYERTOGROUP
869 {
870    DWORD  dwType;      /* Use message type as described above */
871    DPID   dpIdGroup;   /* Group ID to add player into */
872    DPID   dpIdPlayer;  /* ID of player to add */
873 } DPMSG_ADDPLAYERTOGROUP,      *LPDPMSG_ADDPLAYERTOGROUP, 
874   DPMSG_DELETEPLAYERFROMGROUP, *LPDPMSG_DELETEPLAYERFROMGROUP; 
875
876 /* NOTE: DPMSG_ADDGROUPTOGROUP and DPMSG_DELETEGROUPFROMGROUP are the same */
877 typedef struct tagDPMSG_ADDGROUPTOGROUP
878 {
879    DWORD  dwType;          /* Use message type as described above */
880    DPID   dpIdParentGroup; /* Group ID to add group into */
881    DPID   dpIdGroup;       /* ID of group to add */
882 } DPMSG_ADDGROUPTOGROUP,      *LPDPMSG_ADDGROUPTOGROUP,
883   DPMSG_DELETEGROUPFROMGROUP, *LPDPMSG_DELETEGROUPFROMGROUP;
884
885 typedef struct tagDPMSG_SETPLAYERORGROUPDATA
886 {
887    DWORD   dwType;       /* Use message type as described above */
888    DWORD   dwPlayerType; /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */ 
889    DPID    dpId;         /* ID of player/group */
890    LPVOID  lpData;       /* Pointer to data */
891    DWORD   dwDataSize;   /* Size of data */
892 } DPMSG_SETPLAYERORGROUPDATA, *LPDPMSG_SETPLAYERORGROUPDATA;
893
894 typedef struct tagDPMSG_SETPLAYERORGROUPNAME
895 {
896    DWORD  dwType;       /* Use message type as described above */
897    DWORD  dwPlayerType; /* Use DPPLAYERTYPE_GROUP or DPPLAYERTYPE_PLAYER */
898    DPID   dpId;         /* ID of player/group */
899    DPNAME dpnName;      /* New name */
900 } DPMSG_SETPLAYERORGROUPNAME, *LPDPMSG_SETPLAYERORGROUPNAME;
901
902 typedef struct tagDPMSG_SETSESSIONDESC
903 {
904    DWORD           dwType; /* Use message type as described above */
905    DPSESSIONDESC2  dpDesc; /* New session desc */
906 } DPMSG_SETSESSIONDESC, *LPDPMSG_SETSESSIONDESC;
907
908 typedef struct tagDPMSG_SECUREMESSAGE
909 {
910    DWORD   dwType;     /* Use message type as described above */
911    DWORD   dwFlags;    /* Signed/Encrypted */
912    DPID    dpIdFrom;   /* ID of from player */
913    LPVOID  lpData;     /* Message sent */
914    DWORD   dwDataSize; /* Size of message */
915 } DPMSG_SECUREMESSAGE, *LPDPMSG_SECUREMESSAGE;
916
917 typedef struct tagDPMSG_STARTSESSION
918 {
919    DWORD            dwType; /* Use message type as described above */
920    LPDPLCONNECTION  lpConn; /* DPLCONNECTION structure */
921 } DPMSG_STARTSESSION, *LPDPMSG_STARTSESSION;
922
923 typedef struct tagDPMSG_CHAT
924 {
925    DWORD     dwType;       /* Use message type as described above */
926    DWORD     dwFlags;      /* Message flags */
927    DPID      idFromPlayer; /* ID of sender */
928    DPID      idToPlayer;   /* ID of who msg is for */
929    DPID      idToGroup;    /* ID of what group msg is for */
930    LPDPCHAT  lpChat;       /* Chat message */
931 } DPMSG_CHAT, *LPDPMSG_CHAT;
932
933 typedef struct tagDPMSG_SETGROUPOWNER
934 {
935    DWORD  dwType;     /* Use message type as described above */
936    DPID   idGroup;    /* Group ID */
937    DPID   idNewOwner; /* ID of player who now owns group */
938    DPID   idOldOwner; /* ID of player who used to own group */
939 } DPMSG_SETGROUPOWNER, *LPDPMSG_SETGROUPOWNER;
940
941 typedef struct
942 {
943    DWORD    dwType;      /* Use message type as described above */
944    DPID     idFrom;      /* ID from */
945    DPID     idTo;        /* ID to */ 
946    DWORD    dwFlags;    
947    DWORD    dwPriority;
948    DWORD    dwTimeout;
949    LPVOID   lpvContext;
950    DWORD    dwMsgID;
951    HRESULT  hr;
952    DWORD    dwSendTime;  /* When sent ? */ 
953 } DPMSG_SENDCOMPLETE, *LPDPMSG_SENDCOMPLETE;
954
955
956
957 #ifdef __cplusplus
958 } /* extern "C" */
959 #endif /* defined(__cplusplus) */
960
961 #endif /* __WINE_DPLAY_H */