* Slap *some* sense into our header inclusions.
[reactos.git] / reactos / dll / directx / dplayx / dplayx_global.h
1 /*
2 * Copyright 1999, 2000 Peter Hunnisett
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #ifndef __WINE_DPLAYX_GLOBAL
20 #define __WINE_DPLAYX_GLOBAL
21
22 #define WIN32_NO_STATUS
23 #define _INC_WINDOWS
24 #define COM_NO_WINDOWS_H
25
26 #include <stdarg.h>
27
28 #include <windef.h>
29 #include <winbase.h>
30 //#include "winuser.h"
31 #include <dplay.h>
32
33 BOOL DPLAYX_ConstructData(void);
34 BOOL DPLAYX_DestructData(void);
35
36 HRESULT DPLAYX_GetConnectionSettingsA ( DWORD dwAppID,
37 LPVOID lpData,
38 LPDWORD lpdwDataSize );
39 HRESULT DPLAYX_GetConnectionSettingsW ( DWORD dwAppID,
40 LPVOID lpData,
41 LPDWORD lpdwDataSize );
42
43 HRESULT DPLAYX_SetConnectionSettingsA ( DWORD dwFlags,
44 DWORD dwAppID,
45 LPDPLCONNECTION lpConn );
46 HRESULT DPLAYX_SetConnectionSettingsW ( DWORD dwFlags,
47 DWORD dwAppID,
48 LPDPLCONNECTION lpConn );
49
50 BOOL DPLAYX_CreateLobbyApplication( DWORD dwAppID );
51 BOOL DPLAYX_DestroyLobbyApplication( DWORD dwAppID );
52
53 BOOL DPLAYX_WaitForConnectionSettings( BOOL bWait );
54 BOOL DPLAYX_AnyLobbiesWaitingForConnSettings(void);
55
56 BOOL DPLAYX_SetLobbyHandles( DWORD dwAppID,
57 HANDLE hStart, HANDLE hDeath, HANDLE hConnRead );
58 BOOL DPLAYX_GetThisLobbyHandles( LPHANDLE lphStart,
59 LPHANDLE lphDeath,
60 LPHANDLE lphConnRead, BOOL bClearSetHandles );
61
62 LPDPSESSIONDESC2 DPLAYX_CopyAndAllocateLocalSession( UINT* index );
63 BOOL DPLAYX_CopyLocalSession( UINT* index, LPDPSESSIONDESC2 lpsd );
64 void DPLAYX_SetLocalSession( LPCDPSESSIONDESC2 lpsd );
65
66 BOOL DPLAYX_SetLobbyMsgThreadId( DWORD dwAppId, DWORD dwThreadId );
67
68 /* FIXME: This should not be here */
69 LPVOID DPLAYX_PrivHeapAlloc( DWORD flags, DWORD size );
70 void DPLAYX_PrivHeapFree( LPVOID addr );
71
72 LPSTR DPLAYX_strdupA( DWORD flags, LPCSTR str );
73 LPWSTR DPLAYX_strdupW( DWORD flags, LPCWSTR str );
74 /* FIXME: End shared data alloc which should be local */
75
76
77 /* Convert a DP or DPL HRESULT code into a string for human consumption */
78 LPCSTR DPLAYX_HresultToString( HRESULT hr );
79
80 #endif /* __WINE_DPLAYX_GLOBAL */