Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
65be0d1f
Commit
65be0d1f
authored
21 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added SetupCreateDiskSpaceList stub.
parent
4d2cfee1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/setupapi/setupapi.spec
+2
-2
2 additions, 2 deletions
dlls/setupapi/setupapi.spec
dlls/setupapi/stubs.c
+18
-0
18 additions, 0 deletions
dlls/setupapi/stubs.c
include/setupapi.h
+2
-0
2 additions, 0 deletions
include/setupapi.h
with
22 additions
and
2 deletions
dlls/setupapi/setupapi.spec
+
2
−
2
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
...
...
This diff is collapsed.
Click to expand it.
dlls/setupapi/stubs.c
+
18
−
0
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
;
}
This diff is collapsed.
Click to expand it.
include/setupapi.h
+
2
−
0
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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment