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
63a5cec8
Commit
63a5cec8
authored
Jan 24, 2009
by
Ricardo Filipe
Committed by
Alexandre Julliard
Jan 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for RtlCompressBuffer.
parent
4de59850
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
rtl.c
dlls/ntdll/rtl.c
+15
-0
winternl.h
include/winternl.h
+1
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
63a5cec8
...
...
@@ -450,7 +450,7 @@
@ stdcall RtlCompareMemoryUlong(ptr long long)
@ stdcall RtlCompareString(ptr ptr long)
@ stdcall RtlCompareUnicodeString (ptr ptr long)
@ st
ub RtlCompressBuffer
@ st
dcall RtlCompressBuffer(long ptr long ptr long long ptr ptr)
@ stdcall RtlComputeCrc32(long ptr long)
# @ stub RtlComputeImportTableHash
# @ stub RtlComputePrivatizedDllName_U
...
...
dlls/ntdll/rtl.c
View file @
63a5cec8
...
...
@@ -1080,3 +1080,18 @@ NTSTATUS WINAPI RtlGetCompressionWorkSpaceSize(USHORT CompressionFormatAndEngine
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* RtlCompressBuffer [NTDLL.@]
*/
NTSTATUS
WINAPI
RtlCompressBuffer
(
USHORT
CompressionFormatAndEngine
,
PUCHAR
UncompressedBuffer
,
ULONG
UncompressedBufferSize
,
PUCHAR
CompressedBuffer
,
ULONG
CompressedBufferSize
,
ULONG
UncompressedChunkSize
,
PULONG
FinalCompressedSize
,
PVOID
WorkSpace
)
{
FIXME
(
"0x%04x, %p, %u, %p, %u, %u, %p, %p :stub
\n
"
,
CompressionFormatAndEngine
,
UncompressedBuffer
,
UncompressedBufferSize
,
CompressedBuffer
,
CompressedBufferSize
,
UncompressedChunkSize
,
FinalCompressedSize
,
WorkSpace
);
return
STATUS_NOT_IMPLEMENTED
;
}
include/winternl.h
View file @
63a5cec8
...
...
@@ -2251,6 +2251,7 @@ NTSYSAPI PDEBUG_BUFFER WINAPI RtlCreateQueryDebugBuffer(ULONG,BOOLEAN);
NTSYSAPI
ULONG
WINAPI
RtlCompactHeap
(
HANDLE
,
ULONG
);
NTSYSAPI
LONG
WINAPI
RtlCompareString
(
const
STRING
*
,
const
STRING
*
,
BOOLEAN
);
NTSYSAPI
LONG
WINAPI
RtlCompareUnicodeString
(
const
UNICODE_STRING
*
,
const
UNICODE_STRING
*
,
BOOLEAN
);
NTSYSAPI
NTSTATUS
WINAPI
RtlCompressBuffer
(
USHORT
,
PUCHAR
,
ULONG
,
PUCHAR
,
ULONG
,
ULONG
,
PULONG
,
PVOID
);
NTSYSAPI
DWORD
WINAPI
RtlComputeCrc32
(
DWORD
,
const
BYTE
*
,
INT
);
NTSYSAPI
NTSTATUS
WINAPI
RtlConvertSidToUnicodeString
(
PUNICODE_STRING
,
PSID
,
BOOLEAN
);
NTSYSAPI
LONGLONG
WINAPI
RtlConvertLongToLargeInteger
(
LONG
);
...
...
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