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
3dcac86e
Commit
3dcac86e
authored
Dec 29, 2008
by
Andrew Nguyen
Committed by
Alexandre Julliard
Dec 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cfgmgr32: Forward and stub CM_Connect_MachineA.
parent
f197e8b1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+1
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+9
-0
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
3dcac86e
...
...
@@ -7,7 +7,7 @@
@ stub CM_Add_Range
@ stub CM_Add_Res_Des
@ stub CM_Add_Res_Des_Ex
@ st
ub
CM_Connect_MachineA
@ st
dcall CM_Connect_MachineA(str ptr) setupapi.
CM_Connect_MachineA
@ stdcall CM_Connect_MachineW(wstr ptr) setupapi.CM_Connect_MachineW
@ stub CM_Create_DevNodeA
@ stub CM_Create_DevNodeW
...
...
dlls/setupapi/setupapi.spec
View file @
3dcac86e
...
...
@@ -18,7 +18,7 @@
@ stub CM_Add_Range
@ stub CM_Add_Res_Des
@ stub CM_Add_Res_Des_Ex
@ st
ub CM_Connect_MachineA
@ st
dcall CM_Connect_MachineA(str ptr)
@ stdcall CM_Connect_MachineW(wstr ptr)
@ stub CM_Create_DevNodeA
@ stub CM_Create_DevNodeW
...
...
dlls/setupapi/stubs.c
View file @
3dcac86e
...
...
@@ -52,6 +52,15 @@ DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
}
/***********************************************************************
* CM_Connect_MachineA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Connect_MachineA
(
PCSTR
name
,
PHMACHINE
machine
)
{
FIXME
(
"(%s %p) stub
\n
"
,
name
,
machine
);
return
CR_ACCESS_DENIED
;
}
/***********************************************************************
* CM_Connect_MachineW (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Connect_MachineW
(
PCWSTR
name
,
PHMACHINE
machine
)
...
...
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