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
32fb489f
Commit
32fb489f
authored
Apr 03, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Apr 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add CM_Get_Device_ID_ExA stub.
parent
9181b7e8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+1
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+1
-1
stubs.c
dlls/setupapi/stubs.c
+10
-0
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
32fb489f
...
...
@@ -64,7 +64,7 @@
@ stub CM_Get_DevNode_Status_Ex
@ stdcall CM_Get_Device_IDA(ptr ptr long long) setupapi.CM_Get_Device_IDA
@ stdcall CM_Get_Device_IDW(ptr ptr long long) setupapi.CM_Get_Device_IDW
@ st
ub
CM_Get_Device_ID_ExA
@ st
dcall CM_Get_Device_ID_ExA(ptr ptr long long ptr) setupapi.
CM_Get_Device_ID_ExA
@ stdcall CM_Get_Device_ID_ExW(ptr ptr long long ptr) setupapi.CM_Get_Device_ID_ExW
@ stdcall CM_Get_Device_ID_ListA(str ptr long long) setupapi.CM_Get_Device_ID_ListA
@ stdcall CM_Get_Device_ID_ListW(wstr ptr long long) setupapi.CM_Get_Device_ID_ListW
...
...
dlls/setupapi/setupapi.spec
View file @
32fb489f
...
...
@@ -75,7 +75,7 @@
@ stub CM_Get_DevNode_Status_Ex
@ stdcall CM_Get_Device_IDA(ptr ptr long long)
@ stdcall CM_Get_Device_IDW(ptr ptr long long)
@ st
ub CM_Get_Device_ID_ExA
@ st
dcall CM_Get_Device_ID_ExA(ptr ptr long long ptr)
@ stdcall 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)
...
...
dlls/setupapi/stubs.c
View file @
32fb489f
...
...
@@ -79,6 +79,16 @@ CONFIGRET WINAPI CM_Disconnect_Machine(HMACHINE handle)
}
/***********************************************************************
* CM_Get_Device_ID_ExA (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Device_ID_ExA
(
DEVINST
dnDevInst
,
PCHAR
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_ExW (SETUPAPI.@)
*/
DWORD
WINAPI
CM_Get_Device_ID_ExW
(
...
...
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