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
6f2ec37b
Commit
6f2ec37b
authored
Dec 15, 2009
by
Vladimir Pankratov
Committed by
Alexandre Julliard
Dec 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stub for CM_Get_Device_ID_ExW.
parent
1b94450f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+10
-0
cfgmgr32.h
include/cfgmgr32.h
+3
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
6f2ec37b
...
...
@@ -74,7 +74,7 @@
@ stdcall CM_Get_Device_IDA(ptr ptr long long)
@ stdcall CM_Get_Device_IDW(ptr ptr long long)
@ stub CM_Get_Device_ID_ExA
@ st
ub CM_Get_Device_ID_ExW
@ st
dcall CM_Get_Device_ID_ExW(ptr ptr long long ptr)
@ stdcall CM_Get_Device_ID_ListA(str ptr long long)
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long)
@ stub CM_Get_Device_ID_List_ExA
...
...
dlls/setupapi/stubs.c
View file @
6f2ec37b
...
...
@@ -79,6 +79,16 @@ CONFIGRET WINAPI CM_Disconnect_Machine(HMACHINE handle)
}
/***********************************************************************
* CM_Get_Device_ID_ExW (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Device_ID_ExW
(
DEVINST
dnDevInst
,
PWCHAR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
,
HMACHINE
hMachine
)
{
FIXME
(
"0x%08x %p 0x%08x 0x%08x %p
\n
"
,
dnDevInst
,
Buffer
,
BufferLen
,
ulFlags
,
hMachine
);
return
CR_SUCCESS
;
}
/***********************************************************************
* CM_Get_Device_ID_ListA (SETUPAPI.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_ID_ListA
(
...
...
include/cfgmgr32.h
View file @
6f2ec37b
...
...
@@ -127,6 +127,9 @@ CMAPI CONFIGRET WINAPI CM_Disconnect_Machine(HMACHINE);
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_IDA
(
DEVINST
,
PSTR
,
ULONG
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_IDW
(
DEVINST
,
PWSTR
,
ULONG
,
ULONG
);
#define CM_Get_Device_ID WINELIB_NAME_AW(CM_Get_Device_ID)
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_ExA
(
DEVINST
,
PSTR
,
ULONG
,
ULONG
,
HMACHINE
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_ExW
(
DEVINST
,
PWSTR
,
ULONG
,
ULONG
,
HMACHINE
);
#define CM_Get_Device_ID_Ex WINELIB_NAME_AW(CM_Get_Device_ID_Ex)
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_ListA
(
PCSTR
,
PCHAR
,
ULONG
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Device_ID_ListW
(
PCWSTR
,
PWCHAR
,
ULONG
,
ULONG
);
#define CM_Get_Device_ID_List WINELIB_NAME_AW(CM_Get_Device_ID_List)
...
...
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