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
7e60ab10
Commit
7e60ab10
authored
Dec 05, 2008
by
Ricardo Filipe
Committed by
Alexandre Julliard
Dec 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs for SetupPromptForDiskA/W.
parent
212ce8b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+28
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
7e60ab10
...
...
@@ -459,8 +459,8 @@
@ stdcall SetupOpenInfFileW(wstr wstr long ptr)
@ stdcall SetupOpenLog(long)
@ stdcall SetupOpenMasterInf()
@ st
ub SetupPromptForDiskA
@ st
ub SetupPromptForDiskW
@ st
dcall SetupPromptForDiskA(ptr str str str str str long ptr long ptr)
@ st
dcall SetupPromptForDiskW(ptr wstr wstr wstr wstr wstr long ptr long ptr)
@ stdcall SetupPromptReboot(ptr ptr long)
@ stub SetupQueryDrivesInDiskSpaceListA
@ stub SetupQueryDrivesInDiskSpaceListW
...
...
dlls/setupapi/stubs.c
View file @
7e60ab10
...
...
@@ -200,3 +200,31 @@ BOOL WINAPI SetupDiGetINFClassW(PCWSTR inf, LPGUID class_guid, PWSTR class_name,
FIXME
(
"%s %p %p %d %p
\n
"
,
debugstr_w
(
inf
),
class_guid
,
class_name
,
size
,
required_size
);
return
FALSE
;
}
/***********************************************************************
* SetupPromptForDiskA (SETUPAPI.@)
*/
UINT
WINAPI
SetupPromptForDiskA
(
HWND
hwndParent
,
PCSTR
DialogTitle
,
PCSTR
DiskName
,
PCSTR
PathToSource
,
PCSTR
FileSought
,
PCSTR
TagFile
,
DWORD
DiskPromptStyle
,
PSTR
PathBuffer
,
DWORD
PathBufferSize
,
PDWORD
PathRequiredSize
)
{
FIXME
(
"%p %s %s %s %s %s %d %p %d %p: stub
\n
"
,
hwndParent
,
debugstr_a
(
DialogTitle
),
debugstr_a
(
DiskName
),
debugstr_a
(
PathToSource
),
debugstr_a
(
FileSought
),
debugstr_a
(
TagFile
),
DiskPromptStyle
,
PathBuffer
,
PathBufferSize
,
PathRequiredSize
);
return
0
;
}
/***********************************************************************
* SetupPromptForDiskW (SETUPAPI.@)
*/
UINT
WINAPI
SetupPromptForDiskW
(
HWND
hwndParent
,
PCWSTR
DialogTitle
,
PCWSTR
DiskName
,
PCWSTR
PathToSource
,
PCWSTR
FileSought
,
PCWSTR
TagFile
,
DWORD
DiskPromptStyle
,
PWSTR
PathBuffer
,
DWORD
PathBufferSize
,
PDWORD
PathRequiredSize
)
{
FIXME
(
"%p %s %s %s %s %s %d %p %d %p: stub
\n
"
,
hwndParent
,
debugstr_w
(
DialogTitle
),
debugstr_w
(
DiskName
),
debugstr_w
(
PathToSource
),
debugstr_w
(
FileSought
),
debugstr_w
(
TagFile
),
DiskPromptStyle
,
PathBuffer
,
PathBufferSize
,
PathRequiredSize
);
return
0
;
}
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