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.
25 lines
524 B
25 lines
524 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
//
|
|
// File: priv.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _PRIV_H_
|
|
#define _PRIV_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HANDLE EnablePrivileges(PDWORD pdwPrivileges, ULONG cPrivileges);
|
|
void ReleasePrivileges(HANDLE hToken);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _PRIV_H_
|