Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c62dd29b
Commit
c62dd29b
authored
Mar 21, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Mar 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add prototypes for RtlEncryptMemory and RtlDecryptMemory in ntsecapi.h.
parent
890ce536
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
crypt.c
dlls/advapi32/crypt.c
+2
-2
ntsecapi.h
include/ntsecapi.h
+4
-0
No files found.
dlls/advapi32/crypt.c
View file @
c62dd29b
...
@@ -2302,7 +2302,7 @@ BOOLEAN WINAPI SystemFunction036(PVOID pbBuffer, ULONG dwLen)
...
@@ -2302,7 +2302,7 @@ BOOLEAN WINAPI SystemFunction036(PVOID pbBuffer, ULONG dwLen)
/******************************************************************************
/******************************************************************************
* SystemFunction040 (ADVAPI32.@)
* SystemFunction040 (ADVAPI32.@)
*
*
* MSDN documents this function as RtlEncryptMemory.
* MSDN documents this function as RtlEncryptMemory
and declares it in ntsecapi.h
.
*
*
* PARAMS
* PARAMS
* memory [I/O] Pointer to memory to encrypt.
* memory [I/O] Pointer to memory to encrypt.
...
@@ -2330,7 +2330,7 @@ NTSTATUS WINAPI SystemFunction040(PVOID memory, ULONG length, ULONG flags)
...
@@ -2330,7 +2330,7 @@ NTSTATUS WINAPI SystemFunction040(PVOID memory, ULONG length, ULONG flags)
/******************************************************************************
/******************************************************************************
* SystemFunction041 (ADVAPI32.@)
* SystemFunction041 (ADVAPI32.@)
*
*
* MSDN documents this function as RtlDecryptMemory.
* MSDN documents this function as RtlDecryptMemory
and declares it in ntsecapi.h
.
*
*
* PARAMS
* PARAMS
* memory [I/O] Pointer to memory to decrypt.
* memory [I/O] Pointer to memory to decrypt.
...
...
include/ntsecapi.h
View file @
c62dd29b
...
@@ -337,8 +337,12 @@ typedef enum _POLICY_NOTIFICATION_INFORMATION_CLASS
...
@@ -337,8 +337,12 @@ typedef enum _POLICY_NOTIFICATION_INFORMATION_CLASS
}
POLICY_NOTIFICATION_INFORMATION_CLASS
,
*
PPOLICY_NOTIFICATION_INFORMATION_CLASS
;
}
POLICY_NOTIFICATION_INFORMATION_CLASS
,
*
PPOLICY_NOTIFICATION_INFORMATION_CLASS
;
#define RtlGenRandom SystemFunction036
#define RtlGenRandom SystemFunction036
#define RtlEncryptMemory SystemFunction040
#define RtlDecryptMemory SystemFunction041
BOOLEAN
WINAPI
RtlGenRandom
(
PVOID
,
ULONG
);
BOOLEAN
WINAPI
RtlGenRandom
(
PVOID
,
ULONG
);
NTSTATUS
WINAPI
RtlEncryptMemory
(
PVOID
,
ULONG
,
ULONG
);
NTSTATUS
WINAPI
RtlDecryptMemory
(
PVOID
,
ULONG
,
ULONG
);
NTSTATUS
WINAPI
LsaAddAccountRights
(
LSA_HANDLE
,
PSID
,
PLSA_UNICODE_STRING
,
ULONG
);
NTSTATUS
WINAPI
LsaAddAccountRights
(
LSA_HANDLE
,
PSID
,
PLSA_UNICODE_STRING
,
ULONG
);
NTSTATUS
WINAPI
LsaCallAuthenticationPackage
(
HANDLE
,
ULONG
,
PVOID
,
ULONG
,
PVOID
*
,
PULONG
,
PNTSTATUS
);
NTSTATUS
WINAPI
LsaCallAuthenticationPackage
(
HANDLE
,
ULONG
,
PVOID
,
ULONG
,
PVOID
*
,
PULONG
,
PNTSTATUS
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment