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
849bbd90
Commit
849bbd90
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 DriverPackageGetPath{A,W}.
parent
d57ab7fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
difxapi.spec
dlls/difxapi/difxapi.spec
+2
-2
main.c
dlls/difxapi/main.c
+12
-0
No files found.
dlls/difxapi/difxapi.spec
View file @
849bbd90
@ stub DIFXAPISetLogCallbackA
@ stub DIFXAPISetLogCallbackW
@ st
ub DriverPackageGetPathA
@ st
ub DriverPackageGetPathW
@ st
dcall DriverPackageGetPathA(str ptr ptr)
@ st
dcall DriverPackageGetPathW(wstr ptr ptr)
@ stdcall DriverPackageInstallA(str long ptr ptr)
@ stdcall DriverPackageInstallW(wstr long ptr ptr)
@ stdcall DriverPackagePreinstallA(str long)
...
...
dlls/difxapi/main.c
View file @
849bbd90
...
...
@@ -64,3 +64,15 @@ DWORD WINAPI DriverPackageUninstallW(LPCWSTR inf, DWORD flags, PCINSTALLERINFO_W
if
(
reboot
)
*
reboot
=
FALSE
;
return
ERROR_SUCCESS
;
}
DWORD
WINAPI
DriverPackageGetPathA
(
LPCSTR
inf
,
CHAR
*
dest
,
DWORD
*
count
)
{
FIXME
(
"(%s, %p, %p) stub
\n
"
,
wine_dbgstr_a
(
inf
),
dest
,
count
);
return
ERROR_UNSUPPORTED_TYPE
;
}
DWORD
WINAPI
DriverPackageGetPathW
(
LPCWSTR
inf
,
WCHAR
*
dest
,
DWORD
*
count
)
{
FIXME
(
"(%s, %p, %p) stub
\n
"
,
wine_dbgstr_w
(
inf
),
dest
,
count
);
return
ERROR_UNSUPPORTED_TYPE
;
}
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