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
ae8a07d9
Commit
ae8a07d9
authored
Dec 24, 2008
by
Ricardo Filipe
Committed by
Alexandre Julliard
Dec 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for CM_Locate_DevNodeA/W.
parent
0b21bb75
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
2 deletions
+25
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+20
-0
cfgmgr32.h
include/cfgmgr32.h
+3
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
ae8a07d9
...
...
@@ -128,8 +128,8 @@
@ stub CM_Intersect_Range_List
@ stub CM_Invert_Range_List
@ stub CM_Is_Dock_Station_Present
@ st
ub CM_Locate_DevNodeA
@ st
ub CM_Locate_DevNodeW
@ st
dcall CM_Locate_DevNodeA(ptr str long)
@ st
dcall CM_Locate_DevNodeW(ptr wstr long)
@ stub CM_Locate_DevNode_ExA
@ stub CM_Locate_DevNode_ExW
@ stub CM_Merge_Range_List
...
...
dlls/setupapi/stubs.c
View file @
ae8a07d9
...
...
@@ -228,3 +228,23 @@ UINT WINAPI SetupPromptForDiskW(HWND hwndParent, PCWSTR DialogTitle, PCWSTR Disk
PathRequiredSize
);
return
0
;
}
/***********************************************************************
* CM_Locate_DevNodeA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Locate_DevNodeA
(
PDEVINST
pdnDevInst
,
DEVINSTID_A
pDeviceID
,
ULONG
ulFlags
)
{
FIXME
(
"%p %s 0x%08x: stub
\n
"
,
pdnDevInst
,
debugstr_a
(
pDeviceID
),
ulFlags
);
return
CR_FAILURE
;
}
/***********************************************************************
* CM_Locate_DevNodeW (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Locate_DevNodeW
(
PDEVINST
pdnDevInst
,
DEVINSTID_W
pDeviceID
,
ULONG
ulFlags
)
{
FIXME
(
"%p %s 0x%08x: stub
\n
"
,
pdnDevInst
,
debugstr_w
(
pDeviceID
),
ulFlags
);
return
CR_FAILURE
;
}
include/cfgmgr32.h
View file @
ae8a07d9
...
...
@@ -129,6 +129,9 @@ CMAPI CONFIGRET WINAPI CM_Get_Device_ID_List_ExW(PCWSTR,PWCHAR,ULONG,ULONG,HMACH
#define CM_Get_Device_ID_List_Ex WINELIB_NAME_AW(CM_Get_Device_ID_List_Ex)
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_Size
(
PULONG
,
DEVINST
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_Size_Ex
(
PULONG
,
DEVINST
,
ULONG
,
HMACHINE
);
CMAPI
CONFIGRET
WINAPI
CM_Locate_DevNodeA
(
PDEVINST
,
DEVINSTID_A
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Locate_DevNodeW
(
PDEVINST
,
DEVINSTID_W
,
ULONG
);
#define CM_Locate_DevNode WINELIB_NAME_AW(CM_Locate_DevNode)
#ifdef __cplusplus
}
...
...
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