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
141dcff4
Commit
141dcff4
authored
Jan 27, 2009
by
Ricardo Filipe
Committed by
Alexandre Julliard
Jan 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for RtlDecompressBuffer.
parent
c18d3404
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 @
141dcff4
...
...
@@ -503,7 +503,7 @@
@ stub RtlDebugPrintTimes
@ stdcall RtlDecodePointer(ptr)
# @ stub RtlDecodeSystemPointer
@ st
ub RtlDecompressBuffer
@ st
dcall RtlDecompressBuffer(long ptr long ptr long ptr)
@ stub RtlDecompressFragment
@ stub RtlDefaultNpAcl
@ stub RtlDelete
...
...
dlls/ntdll/rtl.c
View file @
141dcff4
...
...
@@ -1095,3 +1095,16 @@ NTSTATUS WINAPI RtlCompressBuffer(USHORT CompressionFormatAndEngine, PUCHAR Unco
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* RtlDecompressBuffer [NTDLL.@]
*/
NTSTATUS
WINAPI
RtlDecompressBuffer
(
USHORT
CompressionFormat
,
PUCHAR
UncompressedBuffer
,
ULONG
UncompressedBufferSize
,
PUCHAR
CompressedBuffer
,
ULONG
CompressedBufferSize
,
PULONG
FinalUncompressedSize
)
{
FIXME
(
"0x%04x, %p, %u, %p, %u, %p :stub
\n
"
,
CompressionFormat
,
UncompressedBuffer
,
UncompressedBufferSize
,
CompressedBuffer
,
CompressedBufferSize
,
FinalUncompressedSize
);
return
STATUS_NOT_IMPLEMENTED
;
}
include/winternl.h
View file @
141dcff4
...
...
@@ -2274,6 +2274,7 @@ NTSYSAPI BOOLEAN WINAPI RtlCreateUnicodeString(PUNICODE_STRING,LPCWSTR);
NTSYSAPI
BOOLEAN
WINAPI
RtlCreateUnicodeStringFromAsciiz
(
PUNICODE_STRING
,
LPCSTR
);
NTSYSAPI
NTSTATUS
WINAPI
RtlCreateUserThread
(
HANDLE
,
const
SECURITY_DESCRIPTOR
*
,
BOOLEAN
,
PVOID
,
SIZE_T
,
SIZE_T
,
PRTL_THREAD_START_ROUTINE
,
void
*
,
HANDLE
*
,
CLIENT_ID
*
);
NTSYSAPI
void
WINAPI
RtlDeactivateActivationContext
(
DWORD
,
ULONG_PTR
);
NTSYSAPI
NTSTATUS
WINAPI
RtlDecompressBuffer
(
USHORT
,
PUCHAR
,
ULONG
,
PUCHAR
,
ULONG
,
PULONG
);
NTSYSAPI
NTSTATUS
WINAPI
RtlDeleteAce
(
PACL
,
DWORD
);
NTSYSAPI
NTSTATUS
WINAPI
RtlDeleteAtomFromAtomTable
(
RTL_ATOM_TABLE
,
RTL_ATOM
);
NTSYSAPI
NTSTATUS
WINAPI
RtlDeleteCriticalSection
(
RTL_CRITICAL_SECTION
*
);
...
...
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