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
91d60983
Commit
91d60983
authored
Jan 29, 2024
by
Helix Graziani
Committed by
Alexandre Julliard
Jan 30, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cfgmgr32: Add CM_Get_Device_Interface_PropertyW stub.
parent
e450bf42
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+1
-1
main.c
dlls/cfgmgr32/main.c
+13
-0
cfgmgr32.h
include/cfgmgr32.h
+2
-0
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
91d60983
...
...
@@ -91,7 +91,7 @@
@ stdcall CM_Get_Device_Interface_List_SizeW(ptr ptr wstr long) setupapi.CM_Get_Device_Interface_List_SizeW
@ stdcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr) setupapi.CM_Get_Device_Interface_List_Size_ExA
@ stdcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr) setupapi.CM_Get_Device_Interface_List_Size_ExW
@ st
ub CM_Get_Device_Interface_PropertyW
@ st
dcall CM_Get_Device_Interface_PropertyW(wstr ptr ptr ptr ptr long)
@ stub CM_Get_First_Log_Conf
@ stub CM_Get_First_Log_Conf_Ex
@ stub CM_Get_Global_State
...
...
dlls/cfgmgr32/main.c
View file @
91d60983
...
...
@@ -67,3 +67,16 @@ CONFIGRET WINAPI CM_Register_Notification( CM_NOTIFY_FILTER *filter, void *conte
return
CR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* CM_Get_Device_Interface_PropertyW (cfgmgr32.@)
*/
CONFIGRET
WINAPI
CM_Get_Device_Interface_PropertyW
(
LPCWSTR
device_interface
,
const
DEVPROPKEY
*
property_key
,
DEVPROPTYPE
*
property_type
,
BYTE
*
property_buffer
,
ULONG
*
property_buffer_size
,
ULONG
flags
)
{
FIXME
(
"%s %p %p %p %p %ld stub!
\n
"
,
debugstr_w
(
device_interface
),
property_key
,
property_type
,
property_buffer
,
property_buffer_size
,
flags
);
return
CR_CALL_NOT_IMPLEMENTED
;
}
include/cfgmgr32.h
View file @
91d60983
...
...
@@ -26,6 +26,7 @@
#endif
#include <winreg.h>
#include <devpropdef.h>
/* cfgmgr32 doesn't use the normal convention, it adds an underscore before A/W */
#ifdef WINE_NO_UNICODE_MACROS
...
...
@@ -312,6 +313,7 @@ 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_Get_Device_Interface_PropertyW
(
LPCWSTR
,
const
DEVPROPKEY
*
,
DEVPROPTYPE
*
,
PBYTE
,
PULONG
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_DevNode_Status
(
PULONG
,
PULONG
,
DEVINST
,
ULONG
);
CMAPI
CONFIGRET
WINAPI
CM_Get_DevNode_Status_Ex
(
PULONG
,
PULONG
,
DEVINST
,
ULONG
,
HMACHINE
);
CMAPI
CONFIGRET
WINAPI
CM_Get_Sibling
(
PDEVINST
,
DEVINST
,
ULONG
);
...
...
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