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
d241176f
Commit
d241176f
authored
Oct 10, 2002
by
Uwe Bonnes
Committed by
Alexandre Julliard
Oct 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More stubs.
parent
c3a78d4f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
82 additions
and
4 deletions
+82
-4
setupapi.spec
dlls/setupapi/setupapi.spec
+23
-4
stubs.c
dlls/setupapi/stubs.c
+59
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
d241176f
@ stub AddMiniIconToList
@ stub AddTagToGroupOrderListEntry
@ stub AppendStringToMultiSz
@ stub AssertFail
@ stdcall CM_Connect_MachineW(wstr ptr) CM_Connect_MachineW
@ stdcall CM_Disconnect_Machine(long) CM_Disconnect_Machine
@ stub CM_Free_Log_Conf_Handle
@ stub CM_Free_Res_Des_Handle
@ stub CM_Get_DevNode_Status_Ex
@ stub CM_Get_Device_ID_ExW
@ stub CM_Get_First_Log_Conf_Ex
@ stub CM_Get_Next_Res_Des_Ex
@ stub CM_Get_Res_Des_Data_Ex
@ stub CM_Get_Res_Des_Data_Size_Ex
@ stub CM_Locate_DevNode_ExW
@ stub CM_Reenumerate_DevNode_Ex
@ stub CaptureAndConvertAnsiArg
@ stub CaptureStringArg
@ stub CenterWindowRelativeToParent
...
...
@@ -72,18 +80,22 @@
@ stub SetupDestroyDiskSpaceList
@ stub SetupDiAskForOEMDisk
@ stub SetupDiBuildClassInfoList
@ stdcall SetupDiBuildClassInfoListExW(long ptr long ptr wstr ptr) SetupDiBuildClassInfoListExW
@ stub SetupDiBuildDriverInfoList
@ stub SetupDiCallClassInstaller
@ stub SetupDiCancelDriverInfoSearch
@ stub SetupDiChangeState
@ stub SetupDiClassGuidsFromNameA
@ stdcall SetupDiClassGuidsFromNameExW(wstr ptr long ptr wstr ptr) SetupDiClassGuidsFromNameExW
@ stub SetupDiClassGuidsFromNameW
@ stub SetupDiClassNameFromGuidA
@ stdcall SetupDiClassNameFromGuidExW(ptr ptr long ptr wstr ptr) SetupDiClassNameFromGuidExW
@ stub SetupDiClassNameFromGuidW
@ stub SetupDiCreateDevRegKeyA
@ stub SetupDiCreateDevRegKeyW
@ stub SetupDiCreateDeviceInfoA
@ stub SetupDiCreateDeviceInfoList
@ stdcall SetupDiCreateDeviceInfoListExW(ptr ptr) SetupDiCreateDeviceInfoListExW
@ stub SetupDiCreateDeviceInfoW
@ stub SetupDiDeleteDevRegKey
@ stub SetupDiDeleteDeviceInfo
...
...
@@ -99,16 +111,19 @@
@ stub SetupDiGetActualSectionToInstallW
@ stub SetupDiGetClassBitmapIndex
@ stub SetupDiGetClassDescriptionA
@ stdcall SetupDiGetClassDescriptionExW(ptr ptr long ptr wstr ptr) SetupDiGetClassDescriptionExW
@ stub SetupDiGetClassDescriptionW
@ stub SetupDiGetClassDevPropertySheetsA
@ stub SetupDiGetClassDevPropertySheetsW
@ stdcall SetupDiGetClassDevsA(ptr ptr long long) SetupDiGetClassDevsA
@ stdcall SetupDiGetClassDevsExW(ptr wstr ptr long ptr wstr ptr) SetupDiGetClassDevsExW
@ stdcall SetupDiGetClassDevsW(ptr ptr long long) SetupDiGetClassDevsW
@ stub SetupDiGetClassImageIndex
@ stub SetupDiGetClassImageList
@ stub SetupDiGetClassInstallParamsA
@ stub SetupDiGetClassInstallParamsW
@ stub SetupDiGetDeviceInfoListClass
@ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr) SetupDiGetDeviceInfoListDetailW
@ stub SetupDiGetDeviceInstallParamsA
@ stub SetupDiGetDeviceInstallParamsW
@ stub SetupDiGetDeviceInstanceIdA
...
...
@@ -138,6 +153,7 @@
@ stub SetupDiLoadClassIcon
@ stub SetupDiMoveDuplicateDevice
@ stub SetupDiOpenClassRegKey
@ stdcall SetupDiOpenClassRegKeyExW(ptr long long wstr ptr) SetupDiOpenClassRegKeyExW
@ stub SetupDiOpenDevRegKey
@ stub SetupDiOpenDeviceInfoA
@ stub SetupDiOpenDeviceInfoW
...
...
@@ -293,6 +309,9 @@
@ stub TakeOwnershipOfFile
@ stub UnicodeToMultiByte
@ stub UnmapAndCloseFile
@ stub pSetupAddMiniIconToList
@ stub pSetupAddTagToGroupOrderListEntry
@ stub pSetupAppendStringToMultiSz
@ stub pSetupDirectoryIdToPath
@ stub pSetupGetField
@ stub pSetupGetOsLoaderDriveAndPath
...
...
dlls/setupapi/stubs.c
View file @
d241176f
...
...
@@ -64,3 +64,62 @@ DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
FIXME
(
"%x %x: stub
\n
"
,
w1
,
w2
);
return
0
;
}
/*WINAPI in description not given*/
HKEY
WINAPI
SetupDiOpenClassRegKeyExW
(
LPGUID
class
,
DWORD
access
,
DWORD
flags
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
INVALID_HANDLE_VALUE
;
}
BOOL
WINAPI
SetupDiGetClassDescriptionExW
(
GUID
*
class
,
LPCWSTR
desc
,
DWORD
size
,
PDWORD
required
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
SetupDiClassNameFromGuidExW
(
GUID
*
class
,
LPCWSTR
desc
,
DWORD
size
,
PDWORD
required
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
SetupDiBuildClassInfoListExW
(
DWORD
flags
,
LPGUID
list
,
DWORD
size
,
PDWORD
required
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
SetupDiGetDeviceInfoListDetailW
(
HDEVINFO
devinfo
,
PSP_DEVINFO_DATA
devinfo_data
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
HDEVINFO
WINAPI
SetupDiCreateDeviceInfoListExW
(
LPGUID
class
,
HWND
parend
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
/* NO WINAPI in description given*/
HDEVINFO
WINAPI
SetupDiGetClassDevsExW
(
LPGUID
class
,
LPCWSTR
filter
,
HWND
parent
,
DWORD
flags
,
HDEVINFO
deviceset
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
BOOL
WINAPI
SetupDiClassGuidsFromNameExW
(
LPCWSTR
class
,
LPGUID
list
,
DWORD
size
,
PDWORD
required
,
LPCWSTR
machine
,
PVOID
reserved
)
{
FIXME
(
"
\n
"
);
return
FALSE
;
}
DWORD
WINAPI
CM_Connect_MachineW
(
LPCWSTR
name
,
void
*
machine
)
{
#define CR_SUCCESS 0x00000000
#define CR_ACCESS_DENIED 0x00000033
FIXME
(
"
\n
"
);
return
CR_ACCESS_DENIED
;
}
DWORD
WINAPI
CM_Disconnect_Machine
(
DWORD
handle
)
{
FIXME
(
"
\n
"
);
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