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
5eb88a08
Commit
5eb88a08
authored
Apr 02, 2003
by
Uwe Bonnes
Committed by
Alexandre Julliard
Apr 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some stubs.
parent
1420acef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
setupapi.spec
dlls/setupapi/setupapi.spec
+2
-1
stubs.c
dlls/setupapi/stubs.c
+20
-0
No files found.
dlls/setupapi/setupapi.spec
View file @
5eb88a08
...
...
@@ -27,7 +27,7 @@
@ stub GetSetFileTimestamp
@ stub GetVersionInfoFromImage
@ stub InfIsFromOemLocation
@ st
ub InstallHinfSection
@ st
dcall InstallHinfSection(long long str long)
@ stub InstallHinfSectionA
@ stub InstallHinfSectionW
@ stub InstallStop
...
...
@@ -68,6 +68,7 @@
@ stdcall SetupCommitFileQueueW(long long ptr ptr)
@ stub SetupCopyErrorA
@ stub SetupCopyErrorW
@ stdcall SetupCopyOEMInfA(str str long long ptr long ptr ptr)
@ stub SetupCopyOEMInfW
@ stub SetupCreateDiskSpaceListA
@ stub SetupCreateDiskSpaceListW
...
...
dlls/setupapi/stubs.c
View file @
5eb88a08
...
...
@@ -161,3 +161,23 @@ DWORD WINAPI CM_Disconnect_Machine(DWORD handle)
return
CR_SUCCESS
;
}
/***********************************************************************
* SetupCopyOEMInfA (SETUPAPI.@)
*/
BOOL
WINAPI
SetupCopyOEMInfA
(
LPCSTR
sourceinffile
,
LPCSTR
sourcemedialoc
,
DWORD
mediatype
,
DWORD
copystyle
,
LPSTR
destinfname
,
DWORD
destnamesize
,
PDWORD
required
,
LPSTR
destinfnamecomponent
)
{
FIXME
(
"stub: source %s location %s...
\n
"
,
sourceinffile
,
sourcemedialoc
);
return
FALSE
;
}
/***********************************************************************
* InstallHinfSection (SETUPAPI.@)
*/
void
WINAPI
InstallHinfSection
(
HWND
hwnd
,
HINSTANCE
handle
,
LPCSTR
cmdline
,
INT
show
)
{
FIXME
(
"stub, hwnd %p, handle %p, cmdline %s
\n
"
,
hwnd
,
handle
,
debugstr_a
(
cmdline
));
}
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