[NETAPI32]

Move the NETAPI_IsLocalComputer prototype to netapi32.h.

svn path=/trunk/; revision=59210
This commit is contained in:
Eric Kohl 2013-06-13 21:20:45 +00:00
parent 57ef5082cc
commit e3115fafaf
3 changed files with 6 additions and 4 deletions

View file

@ -22,7 +22,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
BOOL NETAPI_IsLocalComputer(LPCWSTR ServerName);
/************************************************************
* ACCESS_QueryAdminDisplayInformation

View file

@ -25,14 +25,12 @@
#define NTOS_MODE_USER
#include <ndk/rtlfuncs.h>
//#include "netapi32.h"
#include "netapi32.h"
WINE_DEFAULT_DEBUG_CHANNEL(netbios);
static HMODULE NETAPI32_hModule;
BOOL NETAPI_IsLocalComputer(LMCSTR ServerName);
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);

View file

@ -57,4 +57,9 @@ BuildSidFromSidAndRid(IN PSID SrcSid,
IN ULONG RelativeId,
OUT PSID *DestSid);
/* wksta.c */
BOOL
NETAPI_IsLocalComputer(LMCSTR ServerName);
#endif