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
9a53298e
Commit
9a53298e
authored
Oct 04, 2017
by
Louis Lenders
Committed by
Alexandre Julliard
Oct 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for RtlGetUnloadEventTrace.
Signed-off-by:
Louis Lenders
<
xerox.xerox2000x@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2ea6c93b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
rtl.c
dlls/ntdll/rtl.c
+19
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
9a53298e
...
...
@@ -669,7 +669,7 @@
# @ stub RtlGetSecurityDescriptorRMControl
# @ stub RtlGetSetBootStatusData
@ stdcall RtlGetThreadErrorMode()
# @ stub RtlGetUnloadEventTrace
@ stdcall RtlGetUnloadEventTrace()
@ stub RtlGetUserInfoHeap
@ stdcall RtlGetVersion(ptr)
@ stub RtlGuidToPropertySetName
...
...
dlls/ntdll/rtl.c
View file @
9a53298e
...
...
@@ -1653,3 +1653,22 @@ NTSTATUS WINAPI RtlCreateUserProcess(UNICODE_STRING *path, ULONG attributes, RTL
parent
,
inherit
,
debug
,
exception
,
info
);
return
STATUS_NOT_IMPLEMENTED
;
}
typedef
struct
_RTL_UNLOAD_EVENT_TRACE
{
PVOID
BaseAddress
;
SIZE_T
SizeOfImage
;
ULONG
Sequence
;
ULONG
TimeDateStamp
;
ULONG
CheckSum
;
WCHAR
ImageName
[
32
];
}
RTL_UNLOAD_EVENT_TRACE
,
*
PRTL_UNLOAD_EVENT_TRACE
;
/*********************************************************************
* RtlGetUnloadEventTrace [NTDLL.@]
*/
RTL_UNLOAD_EVENT_TRACE
*
WINAPI
RtlGetUnloadEventTrace
(
void
)
{
FIXME
(
"stub!
\n
"
);
return
NULL
;
}
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