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