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
53aef28e
Commit
53aef28e
authored
Aug 21, 2010
by
Julius Schwartzenberg
Committed by
Alexandre Julliard
Aug 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Add stubs SetupQueryDrivesInDiskSpaceList{A,W}.
parent
c4808775
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+18
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
53aef28e
...
...
@@ -469,8 +469,8 @@
@ stdcall SetupPromptForDiskA(ptr str str str str str long ptr long ptr)
@ stdcall SetupPromptForDiskW(ptr wstr wstr wstr wstr wstr long ptr long ptr)
@ stdcall SetupPromptReboot(ptr ptr long)
@ st
ub SetupQueryDrivesInDiskSpaceListA
@ st
ub SetupQueryDrivesInDiskSpaceListW
@ st
dcall SetupQueryDrivesInDiskSpaceListA(ptr ptr long ptr)
@ st
dcall SetupQueryDrivesInDiskSpaceListW(ptr ptr long ptr)
@ stub SetupQueryFileLogA
@ stub SetupQueryFileLogW
@ stdcall SetupQueryInfFileInformationA(ptr long str long ptr)
...
...
dlls/setupapi/stubs.c
View file @
53aef28e
...
...
@@ -194,6 +194,24 @@ INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
}
/***********************************************************************
* SetupQueryDrivesInDiskSpaceListA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupQueryDrivesInDiskSpaceListA
(
HDSKSPC
disk_space
,
PSTR
return_buffer
,
DWORD
return_buffer_size
,
PDWORD
required_size
)
{
FIXME
(
"%p, %p, %d, %p
\n
"
,
disk_space
,
return_buffer
,
return_buffer_size
,
required_size
);
return
FALSE
;
}
/***********************************************************************
* SetupQueryDrivesInDiskSpaceListW (SETUPAPI.@)
*/
BOOL
WINAPI
SetupQueryDrivesInDiskSpaceListW
(
HDSKSPC
disk_space
,
PWSTR
return_buffer
,
DWORD
return_buffer_size
,
PDWORD
required_size
)
{
FIXME
(
"%p, %p, %d, %p
\n
"
,
disk_space
,
return_buffer
,
return_buffer_size
,
required_size
);
return
FALSE
;
}
/***********************************************************************
* SetupSetSourceListA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupSetSourceListA
(
DWORD
flags
,
PCSTR
*
list
,
UINT
count
)
...
...
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