server: Add header guarding for security.h.
This commit is contained in:
parent
e9d9ef591b
commit
5c6e2032d8
|
@ -18,6 +18,9 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#ifndef __WINE_SERVER_SECURITY_H
|
||||
#define __WINE_SERVER_SECURITY_H
|
||||
|
||||
extern const LUID SeIncreaseQuotaPrivilege;
|
||||
extern const LUID SeSecurityPrivilege;
|
||||
extern const LUID SeTakeOwnershipPrivilege;
|
||||
|
@ -144,3 +147,5 @@ static inline void objattr_get_name( const struct object_attributes *objattr, st
|
|||
name->len = ((objattr->name_len) / sizeof(WCHAR)) * sizeof(WCHAR);
|
||||
name->str = (const WCHAR *)objattr + (sizeof(*objattr) + objattr->sd_len) / sizeof(WCHAR);
|
||||
}
|
||||
|
||||
#endif /* __WINE_SERVER_SECURITY_H */
|
||||
|
|
Loading…
Reference in New Issue