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
6ba3cc1c
Commit
6ba3cc1c
authored
May 07, 2009
by
Ricardo Filipe
Committed by
Alexandre Julliard
May 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for CM_Locate_DevNode_ExA/W.
parent
50e9ceb9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+20
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
6ba3cc1c
...
@@ -130,8 +130,8 @@
...
@@ -130,8 +130,8 @@
@ stub CM_Is_Dock_Station_Present
@ stub CM_Is_Dock_Station_Present
@ stdcall CM_Locate_DevNodeA(ptr str long)
@ stdcall CM_Locate_DevNodeA(ptr str long)
@ stdcall CM_Locate_DevNodeW(ptr wstr long)
@ stdcall CM_Locate_DevNodeW(ptr wstr long)
@ st
ub CM_Locate_DevNode_ExA
@ st
dcall CM_Locate_DevNode_ExA(ptr str long long)
@ st
ub CM_Locate_DevNode_ExW
@ st
dcall CM_Locate_DevNode_ExW(ptr wstr long long)
@ stub CM_Merge_Range_List
@ stub CM_Merge_Range_List
@ stub CM_Modify_Res_Des
@ stub CM_Modify_Res_Des
@ stub CM_Modify_Res_Des_Ex
@ stub CM_Modify_Res_Des_Ex
...
...
dlls/setupapi/stubs.c
View file @
6ba3cc1c
...
@@ -265,3 +265,23 @@ CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID,
...
@@ -265,3 +265,23 @@ CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID,
return
CR_FAILURE
;
return
CR_FAILURE
;
}
}
/***********************************************************************
* CM_Locate_DevNode_ExA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Locate_DevNode_ExA
(
PDEVINST
pdnDevInst
,
DEVINSTID_A
pDeviceID
,
ULONG
ulFlags
,
HMACHINE
hMachine
)
{
FIXME
(
"%p %s 0x%08x %p: stub
\n
"
,
pdnDevInst
,
debugstr_a
(
pDeviceID
),
ulFlags
,
hMachine
);
return
CR_FAILURE
;
}
/***********************************************************************
* CM_Locate_DevNode_ExW (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Locate_DevNode_ExW
(
PDEVINST
pdnDevInst
,
DEVINSTID_W
pDeviceID
,
ULONG
ulFlags
,
HMACHINE
hMachine
)
{
FIXME
(
"%p %s 0x%08x %p: stub
\n
"
,
pdnDevInst
,
debugstr_w
(
pDeviceID
),
ulFlags
,
hMachine
);
return
CR_FAILURE
;
}
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