25 lines
405 B
C
25 lines
405 B
C
|
|
|
|
// Microsoft Windows
|
|
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
|
|
// File: security.h
|
|
|
|
|
|
|
|
#ifndef _INC_CSCUI_SECURITY_H
|
|
#define _INC_CSCUI_SECURITY_H
|
|
|
|
DWORD
|
|
Security_SetPrivilegeAttrib(
|
|
LPCTSTR PrivilegeName,
|
|
DWORD NewPrivilegeAttribute,
|
|
DWORD *OldPrivilegeAttribute);
|
|
|
|
BOOL IsSidCurrentUser(PSID psid);
|
|
BOOL IsCurrentUserAnAdminMember(VOID);
|
|
|
|
#endif _INC_CSCUI_SECURITY_H
|
|
|