Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3b0d0642
Commit
3b0d0642
authored
Sep 12, 2018
by
Michael Müller
Committed by
Alexandre Julliard
Sep 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add stub for ApiSetQueryApiSetPresence.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b80780ad
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
api-ms-win-core-apiquery-l1-1-0.spec
...core-apiquery-l1-1-0/api-ms-win-core-apiquery-l1-1-0.spec
+1
-1
misc.c
dlls/ntdll/misc.c
+12
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
No files found.
dlls/api-ms-win-core-apiquery-l1-1-0/api-ms-win-core-apiquery-l1-1-0.spec
View file @
3b0d0642
@ st
ub
ApiSetQueryApiSetPresence
@ st
dcall ApiSetQueryApiSetPresence(ptr ptr) ntdll.
ApiSetQueryApiSetPresence
dlls/ntdll/misc.c
View file @
3b0d0642
...
...
@@ -504,3 +504,15 @@ NTSTATUS WINAPI NtCreateLowBoxToken(HANDLE *token_handle, HANDLE existing_token_
*
token_handle
=
NULL
;
return
STATUS_SUCCESS
;
}
/*********************************************************************
* ApiSetQueryApiSetPresence (NTDLL.@)
*/
BOOL
WINAPI
ApiSetQueryApiSetPresence
(
const
UNICODE_STRING
*
namespace
,
BOOLEAN
*
present
)
{
FIXME
(
"(%s, %p) stub!
\n
"
,
debugstr_us
(
namespace
),
present
);
if
(
present
)
*
present
=
TRUE
;
return
TRUE
;
}
dlls/ntdll/ntdll.spec
View file @
3b0d0642
...
...
@@ -3,6 +3,7 @@
#if you change a Nt.. function DON'T FORGET to change the
#Zw one too.
@ stdcall ApiSetQueryApiSetPresence(ptr ptr)
@ stub CsrAllocateCaptureBuffer
@ stub CsrAllocateCapturePointer
@ stub CsrAllocateMessagePointer
...
...
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