This commit is contained in:
parent
535fa097fd
commit
dae9c83db3
|
@ -653,7 +653,7 @@ typedef NTSTATUS (*P_NtAccessCheck)(
|
|||
OUT PACCESS_MASK GrantedAccess,
|
||||
OUT PNTSTATUS AccessStatus );
|
||||
|
||||
typedef NTSTATUS (*P_NtAccessCheckByTypeResultList) (
|
||||
typedef NTSTATUS (*P_NtAccessCheckByTypeResultList) (
|
||||
PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||
PSID PrincipalSelfSid,
|
||||
HANDLE ClientToken,
|
||||
|
@ -667,7 +667,7 @@ typedef NTSTATUS (*P_NtAccessCheckByTypeResultList) (
|
|||
PNTSTATUS AccessStatus
|
||||
);
|
||||
|
||||
typedef NTSTATUS(WINAPI *P_NtAccessCheckByType) (
|
||||
typedef NTSTATUS (*P_NtAccessCheckByType) (
|
||||
PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||
PSID PrincipalSelfSid,
|
||||
HANDLE ClientToken,
|
||||
|
@ -680,7 +680,7 @@ typedef NTSTATUS(WINAPI *P_NtAccessCheckByType) (
|
|||
PACCESS_MASK GrantedAccess,
|
||||
PNTSTATUS AccessStatus);
|
||||
|
||||
typedef BOOL(*P_RtlEqualSid) (void * sid1, void * sid2);
|
||||
typedef BOOL (*P_RtlEqualSid) (void * sid1, void * sid2);
|
||||
|
||||
typedef NTSTATUS (*P_NtQuerySystemInformation)(
|
||||
IN SYSTEM_INFORMATION_CLASS SystemInformationClass,
|
||||
|
|
|
@ -395,6 +395,7 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\apps\com\common.h" />
|
||||
<ClInclude Include="..\..\common\ntproto.h" />
|
||||
<ClInclude Include="..\..\common\str_util.h" />
|
||||
<ClInclude Include="..\..\common\my_wsa.h" />
|
||||
<ClInclude Include="..\..\common\list.h" />
|
||||
|
|
|
@ -267,6 +267,9 @@
|
|||
<ClInclude Include="..\..\common\str_util.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\common\ntproto.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="resource.rc" />
|
||||
|
|
Loading…
Reference in New Issue