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
741cb979
Commit
741cb979
authored
Jun 02, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Jun 03, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
difxapi: Add stubs for DriverPackageInstall{A,W}.
parent
15cdb517
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
difxapi.spec
dlls/difxapi/difxapi.spec
+2
-2
main.c
dlls/difxapi/main.c
+14
-0
No files found.
dlls/difxapi/difxapi.spec
View file @
741cb979
...
...
@@ -2,8 +2,8 @@
@ stub DIFXAPISetLogCallbackW
@ stub DriverPackageGetPathA
@ stub DriverPackageGetPathW
@ st
ub DriverPackageInstallA
@ st
ub DriverPackageInstallW
@ st
dcall DriverPackageInstallA(str long ptr ptr)
@ st
dcall DriverPackageInstallW(wstr long ptr ptr)
@ stdcall DriverPackagePreinstallA(str long)
@ stdcall DriverPackagePreinstallW(wstr long)
@ stub DriverPackageUninstallA
...
...
dlls/difxapi/main.c
View file @
741cb979
...
...
@@ -36,3 +36,17 @@ DWORD WINAPI DriverPackagePreinstallW(LPCWSTR inf, DWORD flags)
FIXME
(
"(%s, %u) stub
\n
"
,
wine_dbgstr_w
(
inf
),
flags
);
return
ERROR_SUCCESS
;
}
DWORD
WINAPI
DriverPackageInstallA
(
LPCSTR
inf
,
DWORD
flags
,
PCINSTALLERINFO_A
info
,
BOOL
*
reboot
)
{
FIXME
(
"(%s, %u, %p, %p) stub
\n
"
,
wine_dbgstr_a
(
inf
),
flags
,
info
,
reboot
);
if
(
reboot
)
*
reboot
=
FALSE
;
return
ERROR_SUCCESS
;
}
DWORD
WINAPI
DriverPackageInstallW
(
LPCWSTR
inf
,
DWORD
flags
,
PCINSTALLERINFO_W
info
,
BOOL
*
reboot
)
{
FIXME
(
"(%s, %u, %p, %p) stub
\n
"
,
wine_dbgstr_w
(
inf
),
flags
,
info
,
reboot
);
if
(
reboot
)
*
reboot
=
FALSE
;
return
ERROR_SUCCESS
;
}
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