- Timestamp:
- Sep 25, 2000, 12:47:41 AM (25 years ago)
- Location:
- trunk/src/DPlayX
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/DPlayX/dpclassfactory.cpp
r4314 r4317 1 // $Id: dpclassfactory.cpp,v 1.2 2000-09-24 22:47:36 hugh Exp $ 1 2 #include <string.h> 2 3 -
trunk/src/DPlayX/dpinit.h
r4314 r4317 1 // $Id: dpinit.h,v 1.2 2000-09-24 22:47:39 hugh Exp $ 1 2 2 3 #ifndef __WINE_DPINIT_H … … 8 9 extern HRESULT DP_CreateInterface( REFIID riid, LPVOID* ppvObj ); 9 10 extern HRESULT DPL_CreateInterface( REFIID riid, LPVOID* ppvObj ); 10 extern HRESULT DPSP_CreateInterface( REFIID riid, LPVOID* ppvObj, 11 extern HRESULT DPSP_CreateInterface( REFIID riid, LPVOID* ppvObj, 11 12 IDirectPlay2Impl* dp ); 12 13 -
trunk/src/DPlayX/dplay.cpp
r4314 r4317 1 // $Id: dplay.cpp,v 1.2 2000-09-24 22:47:36 hugh Exp $ 1 2 /* Direct Play 2,3,4 Implementation 2 3 * -
trunk/src/DPlayX/dplay_global.h
r4314 r4317 1 // $Id: dplay_global.h,v 1.2 2000-09-24 22:47:40 hugh Exp $ 1 2 #ifndef __WINE_DPLAY_GLOBAL_INCLUDED 2 3 #define __WINE_DPLAY_GLOBAL_INCLUDED … … 5 6 #include "dplayx_queue.h" 6 7 7 extern HRESULT DPL_EnumAddress( LPDPENUMADDRESSCALLBACK lpEnumAddressCallback, 8 LPCVOID lpAddress, DWORD dwAddressSize, 8 extern HRESULT DPL_EnumAddress( LPDPENUMADDRESSCALLBACK lpEnumAddressCallback, 9 LPCVOID lpAddress, DWORD dwAddressSize, 9 10 LPVOID lpContext ); 10 11 … … 190 191 HRESULT DP_HandleMessage( IDirectPlay2Impl* This, LPCVOID lpMessageBody, 191 192 DWORD dwMessageBodySize, LPCVOID lpMessageHeader, 192 WORD wCommandId, WORD wVersion, 193 WORD wCommandId, WORD wVersion, 193 194 LPVOID* lplpReply, LPDWORD lpdwMsgSize ); 194 195 -
trunk/src/DPlayX/dplaysp.cpp
r4314 r4317 1 // $Id: dplaysp.cpp,v 1.2 2000-09-24 22:47:37 hugh Exp $ 1 2 /* This contains the implementation of the interface Service 2 3 * Providers require to communicate with Direct Play -
trunk/src/DPlayX/dplaysp.h
r4314 r4317 1 // $Id: dplaysp.h,v 1.2 2000-09-24 22:47:39 hugh Exp $ 1 2 #ifndef __WINE_DIRECT_PLAY_SP_H 2 3 #define __WINE_DIRECT_PLAY_SP_H -
trunk/src/DPlayX/dplayx_global.cpp
r4314 r4317 1 // $Id: dplayx_global.cpp,v 1.2 2000-09-24 22:47:37 hugh Exp $ 1 2 /* dplayx.dll global data implementation. 2 3 * -
trunk/src/DPlayX/dplayx_global.h
r4314 r4317 1 // $Id: dplayx_global.h,v 1.2 2000-09-24 22:47:39 hugh Exp $ 1 2 2 3 #ifndef __WINE_DPLAYX_GLOBAL … … 8 9 BOOL DPLAYX_DestructData(void); 9 10 10 HRESULT DPLAYX_GetConnectionSettingsA ( DWORD dwAppID, 11 LPVOID lpData, 11 HRESULT DPLAYX_GetConnectionSettingsA ( DWORD dwAppID, 12 LPVOID lpData, 12 13 LPDWORD lpdwDataSize ); 13 HRESULT DPLAYX_GetConnectionSettingsW ( DWORD dwAppID, 14 HRESULT DPLAYX_GetConnectionSettingsW ( DWORD dwAppID, 14 15 LPVOID lpData, 15 16 LPDWORD lpdwDataSize ); 16 17 17 HRESULT DPLAYX_SetConnectionSettingsA ( DWORD dwFlags, 18 DWORD dwAppID, 18 HRESULT DPLAYX_SetConnectionSettingsA ( DWORD dwFlags, 19 DWORD dwAppID, 19 20 LPDPLCONNECTION lpConn ); 20 HRESULT DPLAYX_SetConnectionSettingsW ( DWORD dwFlags, 21 DWORD dwAppID, 21 HRESULT DPLAYX_SetConnectionSettingsW ( DWORD dwFlags, 22 DWORD dwAppID, 22 23 LPDPLCONNECTION lpConn ); 23 24 … … 28 29 BOOL DPLAYX_AnyLobbiesWaitingForConnSettings(void); 29 30 30 BOOL DPLAYX_SetLobbyHandles( DWORD dwAppID, 31 BOOL DPLAYX_SetLobbyHandles( DWORD dwAppID, 31 32 HANDLE hStart, HANDLE hDeath, HANDLE hConnRead ); 32 BOOL DPLAYX_GetThisLobbyHandles( LPHANDLE lphStart, 33 BOOL DPLAYX_GetThisLobbyHandles( LPHANDLE lphStart, 33 34 LPHANDLE lphDeath, 34 35 LPHANDLE lphConnRead, BOOL bClearSetHandles ); -
trunk/src/DPlayX/dplayx_main.cpp
r4314 r4317 1 // $Id: dplayx_main.cpp,v 1.2 2000-09-24 22:47:37 hugh Exp $ 1 2 /* 2 3 * DPLAYX.DLL LibMain -
trunk/src/DPlayX/dplayx_messages.cpp
r4314 r4317 1 // $Id: dplayx_messages.cpp,v 1.2 2000-09-24 22:47:38 hugh Exp $ 1 2 /* DirectPlay & DirectPlayLobby messaging implementation 2 3 * -
trunk/src/DPlayX/dplayx_messages.h
r4314 r4317 1 // $Id: dplayx_messages.h,v 1.2 2000-09-24 22:47:39 hugh Exp $ 1 2 2 3 #ifndef __WINE_DPLAYX_MESSAGES__ -
trunk/src/DPlayX/dplayx_queue.h
r4314 r4317 1 // $Id: dplayx_queue.h,v 1.2 2000-09-24 22:47:39 hugh Exp $ 1 2 /* A queue definition based on sys/queue.h TAILQ definitions 2 * 3 * 3 4 * Blame any implementation mistakes on Peter Hunnisett 4 5 * <hunnise@nortelnetworks.com> … … 40 41 41 42 /* Check if the queue has any elements */ 42 #define DPQ_IS_EMPTY( head ) ( DPQ_FIRST(head) == NULL ) 43 #define DPQ_IS_EMPTY( head ) ( DPQ_FIRST(head) == NULL ) 43 44 44 45 /* Next entry -- FIXME: Convert everything over to this macro ... */ … … 73 74 * fieldToCompare - The value that we're comparing against 74 75 * fieldCompareOperator - The logical operator to compare field and 75 * fieldToCompare. 76 * fieldToCompare. 76 77 * rc - Variable to put the return code. Same type as (head).lpQHFirst 77 78 */ … … 116 117 } while(0) 117 118 118 /* Delete the entire queue 119 /* Delete the entire queue 119 120 * head - pointer to the head of the queue 120 121 * field - field to access the next elements of the queue -
trunk/src/DPlayX/dplobby.cpp
r4314 r4317 1 // $Id: dplobby.cpp,v 1.2 2000-09-24 22:47:38 hugh Exp $ 1 2 /* Direct Play Lobby 2 & 3 Implementation 2 3 * -
trunk/src/DPlayX/name_server.cpp
r4314 r4317 1 // $Id: name_server.cpp,v 1.2 2000-09-24 22:47:38 hugh Exp $ 1 2 /* DPLAYX.DLL name server implementation 2 3 * -
trunk/src/DPlayX/name_server.h
r4314 r4317 1 // $Id: name_server.h,v 1.2 2000-09-24 22:47:40 hugh Exp $ 1 2 2 3 #ifndef __WINE_DPLAYX_NAMESERVER … … 15 16 LPVOID NS_GetNSAddr( LPVOID lpNSInfo ); 16 17 17 void NS_ReplyToEnumSessionsRequest( LPVOID lpMsg, 18 void NS_ReplyToEnumSessionsRequest( LPVOID lpMsg, 18 19 LPDPSP_REPLYDATA lpReplyData, 19 20 IDirectPlay2Impl* lpDP ); … … 22 23 DWORD dwFlags, 23 24 LPSPINITDATA lpSpData ); 24 25 25 26 26 27 BOOL NS_InitializeSessionCache( LPVOID* lplpNSInfo );
Note:
See TracChangeset
for help on using the changeset viewer.