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
7aec33ef
Commit
7aec33ef
authored
May 08, 2018
by
Michael Müller
Committed by
Alexandre Julliard
May 08, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for RtlQueryPackageIdentity.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1f08db56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
rtl.c
dlls/ntdll/rtl.c
+10
-0
No files found.
dlls/ntdll/ntdll.spec
View file @
7aec33ef
...
...
@@ -813,6 +813,7 @@
@ stdcall RtlQueryInformationActivationContext(long long ptr long ptr long ptr)
@ stub RtlQueryInformationActiveActivationContext
@ stub RtlQueryInterfaceMemoryStream
@ stdcall RtlQueryPackageIdentity(long ptr ptr ptr ptr ptr)
@ stub RtlQueryProcessBackTraceInformation
@ stdcall RtlQueryProcessDebugInformation(long long ptr)
@ stub RtlQueryProcessHeapInformation
...
...
dlls/ntdll/rtl.c
View file @
7aec33ef
...
...
@@ -1672,3 +1672,13 @@ RTL_UNLOAD_EVENT_TRACE * WINAPI RtlGetUnloadEventTrace(void)
FIXME
(
"stub!
\n
"
);
return
NULL
;
}
/*********************************************************************
* RtlQueryPackageIdentity [NTDLL.@]
*/
NTSTATUS
WINAPI
RtlQueryPackageIdentity
(
HANDLE
token
,
WCHAR
*
fullname
,
SIZE_T
*
fullname_size
,
WCHAR
*
appid
,
SIZE_T
*
appid_size
,
BOOLEAN
*
packaged
)
{
FIXME
(
"(%p, %p, %p, %p, %p, %p): stub
\n
"
,
token
,
fullname
,
fullname_size
,
appid
,
appid_size
,
packaged
);
return
STATUS_NOT_FOUND
;
}
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