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
f4eb3653
Commit
f4eb3653
authored
Jan 24, 2009
by
Ricardo Filipe
Committed by
Alexandre Julliard
Jan 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for RtlGetCompressionWorkSpaceSize.
parent
c743f9d0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
rtl.c
dlls/ntdll/rtl.c
+13
-0
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
f4eb3653
...
...
@@ -612,7 +612,7 @@
@ stdcall RtlGetAce(ptr long ptr)
@ stdcall RtlGetActiveActivationContext(ptr)
@ stub RtlGetCallersAddress
@ st
ub RtlGetCompressionWorkSpaceSize
@ st
dcall RtlGetCompressionWorkSpaceSize(long ptr ptr)
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr)
@ stdcall RtlGetCurrentDirectory_U(long ptr)
@ stdcall RtlGetCurrentPeb()
...
...
dlls/ntdll/rtl.c
View file @
f4eb3653
...
...
@@ -1067,3 +1067,16 @@ PSLIST_ENTRY WINAPI RtlInterlockedPushListSList(PSLIST_HEADER ListHeader,
return
oldHeader
.
s
.
Next
.
Next
;
#endif
}
/******************************************************************************
* RtlGetCompressionWorkSpaceSize [NTDLL.@]
*/
NTSTATUS
WINAPI
RtlGetCompressionWorkSpaceSize
(
USHORT
CompressionFormatAndEngine
,
PULONG
CompressBufferWorkSpaceSize
,
PULONG
CompressFragmentWorkSpaceSize
)
{
FIXME
(
"0x%04x, %p, %p: stub!
\n
"
,
CompressionFormatAndEngine
,
CompressBufferWorkSpaceSize
,
CompressFragmentWorkSpaceSize
);
return
STATUS_NOT_IMPLEMENTED
;
}
include/winternl.h
View file @
f4eb3653
...
...
@@ -2342,6 +2342,7 @@ NTSYSAPI void WINAPI RtlFreeThreadActivationContextStack(void);
NTSYSAPI
void
WINAPI
RtlFreeUnicodeString
(
PUNICODE_STRING
);
NTSYSAPI
NTSTATUS
WINAPI
RtlGetAce
(
PACL
,
DWORD
,
LPVOID
*
);
NTSYSAPI
NTSTATUS
WINAPI
RtlGetActiveActivationContext
(
HANDLE
*
);
NTSYSAPI
NTSTATUS
WINAPI
RtlGetCompressionWorkSpaceSize
(
USHORT
,
PULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
RtlGetControlSecurityDescriptor
(
PSECURITY_DESCRIPTOR
,
PSECURITY_DESCRIPTOR_CONTROL
,
LPDWORD
);
NTSYSAPI
NTSTATUS
WINAPI
RtlGetCurrentDirectory_U
(
ULONG
,
LPWSTR
);
NTSYSAPI
PEB
*
WINAPI
RtlGetCurrentPeb
(
void
);
...
...
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