* Throughout, use __MSABI_LONG macro rather than 'L' qualifier for numerical constants. git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@5273 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-headers/include/aclui.h b/mingw-w64-headers/include/aclui.h index 858a05c..5975ac2 100644 --- a/mingw-w64-headers/include/aclui.h +++ b/mingw-w64-headers/include/aclui.h
@@ -29,29 +29,29 @@ GUID guidObjectType; } SI_OBJECT_INFO,*PSI_OBJECT_INFO; -#define SI_EDIT_PERMS 0x00000000L -#define SI_EDIT_OWNER 0x00000001L -#define SI_EDIT_AUDITS 0x00000002L -#define SI_CONTAINER 0x00000004L -#define SI_READONLY 0x00000008L -#define SI_ADVANCED 0x00000010L -#define SI_RESET 0x00000020L -#define SI_OWNER_READONLY 0x00000040L -#define SI_EDIT_PROPERTIES 0x00000080L -#define SI_OWNER_RECURSE 0x00000100L -#define SI_NO_ACL_PROTECT 0x00000200L -#define SI_NO_TREE_APPLY 0x00000400L -#define SI_PAGE_TITLE 0x00000800L -#define SI_SERVER_IS_DC 0x00001000L -#define SI_RESET_DACL_TREE 0x00004000L -#define SI_RESET_SACL_TREE 0x00008000L -#define SI_OBJECT_GUID 0x00010000L -#define SI_EDIT_EFFECTIVE 0x00020000L -#define SI_RESET_DACL 0x00040000L -#define SI_RESET_SACL 0x00080000L -#define SI_RESET_OWNER 0x00100000L -#define SI_NO_ADDITIONAL_PERMISSION 0x00200000L -#define SI_MAY_WRITE 0x10000000L +#define SI_EDIT_PERMS __MSABI_LONG(0x00000000) +#define SI_EDIT_OWNER __MSABI_LONG(0x00000001) +#define SI_EDIT_AUDITS __MSABI_LONG(0x00000002) +#define SI_CONTAINER __MSABI_LONG(0x00000004) +#define SI_READONLY __MSABI_LONG(0x00000008) +#define SI_ADVANCED __MSABI_LONG(0x00000010) +#define SI_RESET __MSABI_LONG(0x00000020) +#define SI_OWNER_READONLY __MSABI_LONG(0x00000040) +#define SI_EDIT_PROPERTIES __MSABI_LONG(0x00000080) +#define SI_OWNER_RECURSE __MSABI_LONG(0x00000100) +#define SI_NO_ACL_PROTECT __MSABI_LONG(0x00000200) +#define SI_NO_TREE_APPLY __MSABI_LONG(0x00000400) +#define SI_PAGE_TITLE __MSABI_LONG(0x00000800) +#define SI_SERVER_IS_DC __MSABI_LONG(0x00001000) +#define SI_RESET_DACL_TREE __MSABI_LONG(0x00004000) +#define SI_RESET_SACL_TREE __MSABI_LONG(0x00008000) +#define SI_OBJECT_GUID __MSABI_LONG(0x00010000) +#define SI_EDIT_EFFECTIVE __MSABI_LONG(0x00020000) +#define SI_RESET_DACL __MSABI_LONG(0x00040000) +#define SI_RESET_SACL __MSABI_LONG(0x00080000) +#define SI_RESET_OWNER __MSABI_LONG(0x00100000) +#define SI_NO_ADDITIONAL_PERMISSION __MSABI_LONG(0x00200000) +#define SI_MAY_WRITE __MSABI_LONG(0x10000000) #define SI_EDIT_ALL (SI_EDIT_PERMS | SI_EDIT_OWNER | SI_EDIT_AUDITS) @@ -62,10 +62,10 @@ DWORD dwFlags; } SI_ACCESS,*PSI_ACCESS; -#define SI_ACCESS_SPECIFIC 0x00010000L -#define SI_ACCESS_GENERAL 0x00020000L -#define SI_ACCESS_CONTAINER 0x00040000L -#define SI_ACCESS_PROPERTY 0x00080000L +#define SI_ACCESS_SPECIFIC __MSABI_LONG(0x00010000) +#define SI_ACCESS_GENERAL __MSABI_LONG(0x00020000) +#define SI_ACCESS_CONTAINER __MSABI_LONG(0x00040000) +#define SI_ACCESS_PROPERTY __MSABI_LONG(0x00080000) typedef struct _SI_INHERIT_TYPE { const GUID *pguid;