Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
65be0d1f
Commit
65be0d1f
authored
Mar 15, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added SetupCreateDiskSpaceList stub.
parent
4d2cfee1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
2 deletions
+22
-2
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-2
stubs.c
dlls/setupapi/stubs.c
+18
-0
setupapi.h
include/setupapi.h
+2
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
65be0d1f
...
...
@@ -70,8 +70,8 @@
@ stub SetupCopyErrorW
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
@ stub SetupCopyOEMInfW
@ st
ub SetupCreateDiskSpaceListA
@ st
ub SetupCreateDiskSpaceListW
@ st
dcall SetupCreateDiskSpaceListA(ptr long long)
@ st
dcall SetupCreateDiskSpaceListW(ptr long long)
@ stub SetupDecompressOrCopyFileA
@ stub SetupDecompressOrCopyFileW
@ stub SetupDefaultQueueCallback
...
...
dlls/setupapi/stubs.c
View file @
65be0d1f
...
...
@@ -199,3 +199,21 @@ BOOL WINAPI SetupGetInfInformationA( LPCVOID InfSpec, DWORD SearchControl,
InfSpec
,
SearchControl
,
ReturnBuffer
,
ReturnBufferSize
,
RequiredSize
);
return
TRUE
;
}
/***********************************************************************
* SetupCreateDiskSpaceListA (SETUPAPI.@)
*/
HDSKSPC
SetupCreateDiskSpaceListA
(
PVOID
Reserved1
,
DWORD
Reserved2
,
UINT
Flags
)
{
FIXME
(
"%08x
\n
"
,
Flags
);
return
NULL
;
}
/***********************************************************************
* SetupCreateDiskSpaceListA (SETUPAPI.@)
*/
HDSKSPC
SetupCreateDiskSpaceListW
(
PVOID
Reserved1
,
DWORD
Reserved2
,
UINT
Flags
)
{
FIXME
(
"%08x
\n
"
,
Flags
);
return
NULL
;
}
include/setupapi.h
View file @
65be0d1f
...
...
@@ -37,6 +37,8 @@ typedef PVOID HDEVINFO;
/* Define type for setup file queue */
typedef
PVOID
HSPFILEQ
;
typedef
PVOID
HDSKSPC
;
/* inf structure. */
typedef
struct
_INFCONTEXT
{
...
...
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