Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) Microsoft Corporation
Module Name:
wspriv.h
Abstract:
This module contains the macros, user defined structures & function definitions needed by whoami.cpp, wsuser.cpp, wssid.cpp and wspriv.cppfiles.
Authors:
Christophe Robert
Revision History:
02-July-2001 : Updated by Wipro Technologies.
--*/ #ifndef WSPRIV_H
#define WSPRIV_H
; class WsPrivilege { protected: LUID Luid ; DWORD Attributes ;
public: WsPrivilege ( IN LUID Luid, IN DWORD Attributes ) ; WsPrivilege ( IN LUID_AND_ATTRIBUTES *lpLuaa ) ;
DWORD GetDisplayName ( OUT LPWSTR wszPrivName, OUT LPWSTR wszPrivDisplayName) ;
DWORD GetName ( OUT LPWSTR wszPrivName ) ;
BOOL IsEnabled ( VOID ) ; } ;
#endif
|