mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 19:18:42 +00:00
61 lines
2.3 KiB
C
61 lines
2.3 KiB
C
/*
|
|
* Copyright 2000 Peter Hunnisett
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __WINE_DPLAYX_NAMESERVER
|
|
#define __WINE_DPLAYX_NAMESERVER
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "dplay.h"
|
|
#include "dplaysp.h"
|
|
#include "dplayx_messages.h"
|
|
#include "dplay_global.h"
|
|
|
|
void NS_SetLocalComputerAsNameServer( LPCDPSESSIONDESC2 lpsd, LPVOID lpNSInfo );
|
|
void NS_SetRemoteComputerAsNameServer( LPCDPSESSIONDESC2 lpsd, LPVOID lpNSInfo );
|
|
void NS_AddRemoteComputerAsNameServer( LPCVOID lpNSAddrHdr,
|
|
DWORD dwHdrSize,
|
|
LPCDPMSG_ENUMSESSIONSREPLY lpcMsg,
|
|
LPVOID lpNSInfo );
|
|
LPVOID NS_GetNSAddr( LPVOID lpNSInfo );
|
|
DWORD NS_GetNsMagic( LPVOID lpNSInfo );
|
|
DWORD NS_GetOtherMagic( LPVOID lpNSInfo );
|
|
void NS_SetLocalAddr( LPVOID lpNSInfo, LPCVOID lpHdr, DWORD dwHdrSize );
|
|
|
|
void NS_ReplyToEnumSessionsRequest( LPCVOID lpcMsg,
|
|
LPVOID* lplpReplyData,
|
|
LPDWORD lpdwReplySize,
|
|
IDirectPlay2Impl* lpDP );
|
|
|
|
HRESULT NS_SendSessionRequestBroadcast( LPCGUID lpcGuid,
|
|
DWORD dwFlags,
|
|
const SPINITDATA *lpSpData );
|
|
|
|
|
|
BOOL NS_InitializeSessionCache( LPVOID* lplpNSInfo );
|
|
void NS_DeleteSessionCache( LPVOID lpNSInfo );
|
|
void NS_InvalidateSessionCache( LPVOID lpNSInfo );
|
|
|
|
|
|
void NS_ResetSessionEnumeration( LPVOID lpNSInfo );
|
|
LPDPSESSIONDESC2 NS_WalkSessions( LPVOID lpNSInfo );
|
|
void NS_PruneSessionCache( LPVOID lpNSInfo );
|
|
|
|
#endif /* __WINE_DPLAYX_NAMESERVER */
|