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
d57ab7fd
Commit
d57ab7fd
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 DriverPackageUninstall{A,W}.
parent
741cb979
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 @
d57ab7fd
...
...
@@ -6,5 +6,5 @@
@ stdcall DriverPackageInstallW(wstr long ptr ptr)
@ stdcall DriverPackagePreinstallA(str long)
@ stdcall DriverPackagePreinstallW(wstr long)
@ st
ub DriverPackageUninstallA
@ st
ub DriverPackageUninstallW
@ st
dcall DriverPackageUninstallA(str long ptr ptr)
@ st
dcall DriverPackageUninstallW(wstr long ptr ptr)
dlls/difxapi/main.c
View file @
d57ab7fd
...
...
@@ -50,3 +50,17 @@ DWORD WINAPI DriverPackageInstallW(LPCWSTR inf, DWORD flags, PCINSTALLERINFO_W i
if
(
reboot
)
*
reboot
=
FALSE
;
return
ERROR_SUCCESS
;
}
DWORD
WINAPI
DriverPackageUninstallA
(
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
DriverPackageUninstallW
(
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