mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
#include "advapi32.h" -> #include <advapi32.h>
svn path=/trunk/; revision=17068
This commit is contained in:
parent
5ed4bb62cd
commit
d974b427de
26 changed files with 43 additions and 36 deletions
|
@ -31,16 +31,16 @@ typedef struct _NTMARTA
|
|||
{
|
||||
HINSTANCE hDllInstance;
|
||||
|
||||
PVOID LookupAccountTrustee;
|
||||
PVOID LookupAccountName;
|
||||
PVOID LookupAccountSid;
|
||||
PVOID SetEntriesInAList;
|
||||
PVOID ConvertAccessToSecurityDescriptor;
|
||||
PVOID ConvertSDToAccess;
|
||||
PVOID ConvertAclToAccess;
|
||||
PVOID GetAccessForTrustee;
|
||||
PVOID GetExplicitEntries;
|
||||
|
||||
/* 2CC */PVOID LookupAccountTrustee;
|
||||
/* 2D0 */PVOID LookupAccountName;
|
||||
/* 2D4 */PVOID LookupAccountSid;
|
||||
/* 2D8 */PVOID SetEntriesInAList;
|
||||
/* 2DC */PVOID ConvertAccessToSecurityDescriptor;
|
||||
/* 2E0 */PVOID ConvertSDToAccess;
|
||||
/* 2E4 */PVOID ConvertAclToAccess;
|
||||
/* 2E8 */PVOID GetAccessForTrustee;
|
||||
/* 2EC */PVOID GetExplicitEntries;
|
||||
/* 2F0 */
|
||||
DWORD (STDCALL *RewriteGetNamedRights)(LPWSTR pObjectName,
|
||||
SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo,
|
||||
|
@ -50,11 +50,13 @@ typedef struct _NTMARTA
|
|||
PACL* ppSacl,
|
||||
PSECURITY_DESCRIPTOR* ppSecurityDescriptor);
|
||||
|
||||
/* 2F4 */
|
||||
DWORD (STDCALL *RewriteSetNamedRights)(LPWSTR pObjectName,
|
||||
SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo,
|
||||
PSECURITY_DESCRIPTOR pSecurityDescriptor);
|
||||
|
||||
/*2F8*/
|
||||
DWORD (STDCALL *RewriteGetHandleRights)(HANDLE handle,
|
||||
SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo,
|
||||
|
@ -64,20 +66,24 @@ typedef struct _NTMARTA
|
|||
PACL* ppSacl,
|
||||
PSECURITY_DESCRIPTOR* ppSecurityDescriptor);
|
||||
|
||||
/* 2FC */
|
||||
DWORD (STDCALL *RewriteSetHandleRights)(HANDLE handle,
|
||||
SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo,
|
||||
PSECURITY_DESCRIPTOR pSecurityDescriptor);
|
||||
|
||||
/* 300 */
|
||||
DWORD (STDCALL *RewriteSetEntriesInAcl)(ULONG cCountOfExplicitEntries,
|
||||
PEXPLICIT_ACCESS_W pListOfExplicitEntries,
|
||||
PACL OldAcl,
|
||||
PACL* NewAcl);
|
||||
|
||||
/* 304 */
|
||||
DWORD (STDCALL *RewriteGetExplicitEntriesFromAcl)(PACL pacl,
|
||||
PULONG pcCountOfExplicitEntries,
|
||||
PEXPLICIT_ACCESS_W* pListOfExplicitEntries);
|
||||
|
||||
/* 308 */
|
||||
DWORD (STDCALL *TreeResetNamedSecurityInfo)(LPWSTR pObjectName,
|
||||
SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo,
|
||||
|
@ -89,7 +95,7 @@ typedef struct _NTMARTA
|
|||
FN_PROGRESSW fnProgress,
|
||||
PROG_INVOKE_SETTING ProgressInvokeSetting,
|
||||
PVOID Args);
|
||||
|
||||
/* 30C */
|
||||
DWORD (STDCALL *GetInheritanceSource)(LPWSTR pObjectName,
|
||||
SE_OBJECT_TYPE ObjectType,
|
||||
SECURITY_INFORMATION SecurityInfo,
|
||||
|
@ -101,6 +107,7 @@ typedef struct _NTMARTA
|
|||
PGENERIC_MAPPING pGenericMapping,
|
||||
PINHERITED_FROMW pInheritArray);
|
||||
|
||||
/* 310 */
|
||||
DWORD (STDCALL *FreeIndexArray)(PINHERITED_FROMW pInheritArray,
|
||||
USHORT AceCnt,
|
||||
PFN_OBJECT_MGR_FUNCTS pfnArray OPTIONAL);
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
* - Signature checking
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "crypt.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "crypt.h"
|
||||
|
||||
static const unsigned char InitialPermuteMap[64] =
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "crypt.h"
|
||||
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
* will fill a supplied 16-byte array with the digest.
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "crypt.h"
|
||||
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
* will fill a supplied 16-byte array with the digest.
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "crypt.h"
|
||||
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "crypt.h"
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Created ???
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* 20042502
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include <debug.h>
|
||||
|
||||
/******************************************************************************
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* PROGRAMMER: Eric Kohl
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* 19990515 EA
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
#define USZ {0,0,0}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* 19990415 EA
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
/**********************************************************************
|
||||
* SystemFunction001
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* PURPOSE: ACL/ACE functions
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* PURPOSE: Miscellaneous security functions
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include <accctrl.h>
|
||||
#include <malloc.h>
|
||||
#include <ntsecapi.h>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
* Created 01/11/98
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include <debug.h>
|
||||
|
||||
/*
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* PURPOSE: Security ID functions
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include <debug.h>
|
||||
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* PURPOSE: Trustee functions
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include "debug.h"
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include "svcctl_c.h"
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
#include <services/services.h>
|
||||
|
||||
#define NDEBUG
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* 20010317 ea stubs
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* Created 01/11/98
|
||||
*/
|
||||
|
||||
#include "advapi32.h"
|
||||
#include <advapi32.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
|
Loading…
Reference in a new issue