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
89a43ff7
Commit
89a43ff7
authored
Jan 20, 2005
by
Aric Stewart
Committed by
Alexandre Julliard
Jan 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stub implementations.
parent
b937407e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
cfgmgr32.spec
dlls/cfgmgr32/cfgmgr32.spec
+2
-2
main.c
dlls/cfgmgr32/main.c
+18
-4
No files found.
dlls/cfgmgr32/cfgmgr32.spec
View file @
89a43ff7
...
...
@@ -60,7 +60,7 @@
@ stub CM_Get_DevNode_Registry_Property_ExW
@ stub CM_Get_DevNode_Status
@ stub CM_Get_DevNode_Status_Ex
@ st
ub CM_Get_Device_IDA
@ st
dcall CM_Get_Device_IDA(ptr ptr long long)
@ stub CM_Get_Device_IDW
@ stub CM_Get_Device_ID_ExA
@ stub CM_Get_Device_ID_ExW
...
...
@@ -72,7 +72,7 @@
@ stub CM_Get_Device_ID_List_SizeW
@ stub CM_Get_Device_ID_List_Size_ExA
@ stub CM_Get_Device_ID_List_Size_ExW
@ st
ub CM_Get_Device_ID_Size
@ st
dcall CM_Get_Device_ID_Size(ptr ptr long)
@ stub CM_Get_Device_ID_Size_Ex
@ stub CM_Get_Device_Interface_AliasA
@ stub CM_Get_Device_Interface_AliasW
...
...
dlls/cfgmgr32/main.c
View file @
89a43ff7
/*
* cfgmgr32 implementation
*
* Copyright 2004 Aric Stewart for CodeWeavers
* Copyright 2003 Mike McCormack for CodeWeavers
*
* This library is free software; you can redistribute it and/or
...
...
@@ -22,15 +23,12 @@
#include "windef.h"
#include "winbase.h"
#include "winnt.h"
#include "cfgmgr32.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
cfgmgr32
);
typedef
DWORD
CONFIGRET
;
#define CR_SUCCESS 0
CONFIGRET
WINAPI
CM_Get_Device_ID_ListA
(
PCSTR
pszFilter
,
PCHAR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
...
...
@@ -38,3 +36,19 @@ CONFIGRET WINAPI CM_Get_Device_ID_ListA(
memset
(
Buffer
,
0
,
2
);
return
CR_SUCCESS
;
}
CONFIGRET
WINAPI
CM_Get_Device_ID_Size
(
ULONG
*
pulLen
,
LPVOID
dnDevInst
,
ULONG
ulFlags
)
{
FIXME
(
"%p %p %lu
\n
"
,
pulLen
,
dnDevInst
,
ulFlags
);
*
pulLen
=
1
;
return
CR_SUCCESS
;
}
CONFIGRET
WINAPI
CM_Get_Device_IDA
(
LPVOID
dnDevInst
,
LPSTR
Buffer
,
ULONG
BufferLen
,
ULONG
ulFlags
)
{
FIXME
(
"%p, %p, %lu %lu
\n
"
,
dnDevInst
,
Buffer
,
BufferLen
,
ulFlags
);
Buffer
[
0
]
=
0
;
return
CR_SUCCESS
;
}
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