server: Add header guarding for security.h.

This commit is contained in:
André Hentschel 2015-03-18 23:30:59 +01:00 committed by Alexandre Julliard
parent e9d9ef591b
commit 5c6e2032d8
1 changed files with 5 additions and 0 deletions

View File

@ -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 */