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
67d0509f
Commit
67d0509f
authored
Nov 21, 2021
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shcore: Add GetFeatureEnabledState stub.
Also for Windows PC Health Check. Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d9a63101
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
api-ms-win-core-featurestaging-l1-1-0.spec
...staging-l1-1-0/api-ms-win-core-featurestaging-l1-1-0.spec
+1
-1
main.c
dlls/shcore/main.c
+9
-0
shcore.spec
dlls/shcore/shcore.spec
+1
-1
No files found.
dlls/api-ms-win-core-featurestaging-l1-1-0/api-ms-win-core-featurestaging-l1-1-0.spec
View file @
67d0509f
@ st
ub
GetFeatureEnabledState
@ st
dcall GetFeatureEnabledState(long long) shcore.
GetFeatureEnabledState
@ stub RecordFeatureError
@ stub RecordFeatureUsage
@ stdcall SubscribeFeatureStateChangeNotification(ptr ptr ptr) shcore.SubscribeFeatureStateChangeNotification
...
...
dlls/shcore/main.c
View file @
67d0509f
...
...
@@ -2515,3 +2515,12 @@ void WINAPI SubscribeFeatureStateChangeNotification(FEATURE_STATE_CHANGE_SUBSCRI
{
FIXME
(
"(%p, %p, %p) stub
\n
"
,
subscription
,
callback
,
context
);
}
/*************************************************************************
* GetFeatureEnabledState [SHCORE.@]
*/
FEATURE_ENABLED_STATE
WINAPI
GetFeatureEnabledState
(
UINT32
feature
,
FEATURE_CHANGE_TIME
change_time
)
{
FIXME
(
"(%u, %u) stub
\n
"
,
feature
,
change_time
);
return
FEATURE_ENABLED_STATE_DEFAULT
;
}
dlls/shcore/shcore.spec
View file @
67d0509f
...
...
@@ -9,7 +9,7 @@
@ stdcall GetCurrentProcessExplicitAppUserModelID(ptr)
@ stdcall GetDpiForMonitor(long long ptr ptr)
@ stub GetDpiForShellUIComponent
# @ stub GetFeatureEnabledState
@ stdcall GetFeatureEnabledState(long long)
# @ stub GetFeatureVariant
@ stdcall GetProcessDpiAwareness(long ptr)
@ stdcall GetProcessReference(ptr)
...
...
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