mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
e4e61708d4
- Create home for all dplay name server functionality - Add the framework for EnumSessions - Documentation update
23 lines
419 B
C
23 lines
419 B
C
/* DPLAYX.DLL name server implementation
|
|
*
|
|
* Copyright 2000 - Peter Hunnisett
|
|
*
|
|
* <presently under construction - contact hunnise@nortelnetworks.com>
|
|
*
|
|
*/
|
|
|
|
/* NOTE: Methods with the NS_ prefix are name server methods */
|
|
|
|
|
|
#include "debugtools.h"
|
|
#include "name_server.h"
|
|
|
|
DEFAULT_DEBUG_CHANNEL(dplay);
|
|
|
|
|
|
void DPLAYX_NS_SetLocalComputerAsNameServer( LPDPSESSIONDESC2 lpsd )
|
|
{
|
|
FIXME( ": (%p) stub\n", lpsd );
|
|
}
|
|
|