/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #ifndef TRANSARC_SECUTIL_NT_H #define TRANSARC_SECUTIL_NT_H /* Security related utilities for the Windows platform */ #include #include typedef enum _WELLKNOWN_TRUSTEE_ID { WorldGroup = 1, LocalAdministratorsGroup } WELLKNOWN_TRUSTEE_ID; DWORD ObjectDaclEntryAdd(HANDLE objectHandle, SE_OBJECT_TYPE objectType, WELLKNOWN_TRUSTEE_ID trustee, DWORD accessPerm, ACCESS_MODE accessMode, DWORD inheritance); #endif /* TRANSARC_SECUTIL_NT_H */