mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
640 B
26 lines
640 B
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1992, Microsoft Corporation
|
|
//
|
|
// File: security.cxx
|
|
//
|
|
// Contents: Worker routines to check whether the calling thread has
|
|
// admin access on this machine.
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions: InitializeSecurity
|
|
// AccessCheckRpcClient
|
|
//
|
|
// History: Aug 14, 1996 Milans created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DFS_SECURITY_
|
|
#define _DFS_SECURITY_
|
|
|
|
BOOL DfsInitializeSecurity();
|
|
|
|
BOOL AccessCheckRpcClient();
|
|
|
|
#endif // _DFS_SECURITY_
|