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
ed4b8cb6
Commit
ed4b8cb6
authored
Jan 11, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jan 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setuapi: Add stub for CM_Set_Class_Registry_PropertyA.
parent
913fb67a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+2
-0
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-0
stubs.c
dlls/setupapi/stubs.c
+10
-0
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
ed4b8cb6
...
...
@@ -156,6 +156,8 @@
@ stub CM_Reset_Children_Marks_Ex
@ stub CM_Run_Detection
@ stub CM_Run_Detection_Ex
@ stdcall CM_Set_Class_Registry_PropertyA(ptr long ptr long long ptr) setupapi.CM_Set_Class_Registry_PropertyA
@ stub CM_Set_Class_Registry_PropertyW
@ stub CM_Set_DevNode_Problem
@ stub CM_Set_DevNode_Problem_Ex
@ stub CM_Set_DevNode_Registry_PropertyA
...
...
dlls/setupapi/setupapi.spec
View file @
ed4b8cb6
...
...
@@ -173,6 +173,8 @@
@ stub CM_Reset_Children_Marks_Ex
@ stub CM_Run_Detection
@ stub CM_Run_Detection_Ex
@ stdcall CM_Set_Class_Registry_PropertyA(ptr long ptr long long ptr)
@ stub CM_Set_Class_Registry_PropertyW
@ stub CM_Set_DevNode_Problem
@ stub CM_Set_DevNode_Problem_Ex
@ stub CM_Set_DevNode_Registry_PropertyA
...
...
dlls/setupapi/stubs.c
View file @
ed4b8cb6
...
...
@@ -378,6 +378,16 @@ CONFIGRET WINAPI CM_Enumerate_Classes(ULONG index, LPGUID class, ULONG flags)
}
/***********************************************************************
* CM_Set_Class_Registry_PropertyA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Set_Class_Registry_PropertyA
(
LPGUID
class
,
ULONG
prop
,
PVOID
buf
,
ULONG
len
,
ULONG
flags
,
HMACHINE
machine
)
{
FIXME
(
"%p %u %p %u 0x%08x %p: stub
\n
"
,
class
,
prop
,
buf
,
len
,
flags
,
machine
);
return
CR_FAILURE
;
}
/***********************************************************************
* SetupLogFileW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupLogFileW
(
...
...
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