mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[NETAPI32]
Move the NETAPI_IsLocalComputer prototype to netapi32.h. svn path=/trunk/; revision=59210
This commit is contained in:
parent
57ef5082cc
commit
e3115fafaf
3 changed files with 6 additions and 4 deletions
|
@ -22,7 +22,6 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
||||||
|
|
||||||
BOOL NETAPI_IsLocalComputer(LPCWSTR ServerName);
|
|
||||||
|
|
||||||
/************************************************************
|
/************************************************************
|
||||||
* ACCESS_QueryAdminDisplayInformation
|
* ACCESS_QueryAdminDisplayInformation
|
||||||
|
|
|
@ -25,14 +25,12 @@
|
||||||
|
|
||||||
#define NTOS_MODE_USER
|
#define NTOS_MODE_USER
|
||||||
#include <ndk/rtlfuncs.h>
|
#include <ndk/rtlfuncs.h>
|
||||||
//#include "netapi32.h"
|
#include "netapi32.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(netbios);
|
WINE_DEFAULT_DEBUG_CHANNEL(netbios);
|
||||||
|
|
||||||
static HMODULE NETAPI32_hModule;
|
static HMODULE NETAPI32_hModule;
|
||||||
|
|
||||||
BOOL NETAPI_IsLocalComputer(LMCSTR ServerName);
|
|
||||||
|
|
||||||
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||||
{
|
{
|
||||||
TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
|
TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
|
||||||
|
|
|
@ -57,4 +57,9 @@ BuildSidFromSidAndRid(IN PSID SrcSid,
|
||||||
IN ULONG RelativeId,
|
IN ULONG RelativeId,
|
||||||
OUT PSID *DestSid);
|
OUT PSID *DestSid);
|
||||||
|
|
||||||
|
/* wksta.c */
|
||||||
|
|
||||||
|
BOOL
|
||||||
|
NETAPI_IsLocalComputer(LMCSTR ServerName);
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
Reference in a new issue