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
5bee8b4e
Commit
5bee8b4e
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 DIFXAPISetLogCallback{A,W}.
parent
849bbd90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
difxapi.spec
dlls/difxapi/difxapi.spec
+2
-2
main.c
dlls/difxapi/main.c
+10
-0
No files found.
dlls/difxapi/difxapi.spec
View file @
5bee8b4e
@ st
ub DIFXAPISetLogCallbackA
@ st
ub DIFXAPISetLogCallbackW
@ st
dcall DIFXAPISetLogCallbackA(ptr ptr)
@ st
dcall DIFXAPISetLogCallbackW(ptr ptr)
@ stdcall DriverPackageGetPathA(str ptr ptr)
@ stdcall DriverPackageGetPathW(wstr ptr ptr)
@ stdcall DriverPackageInstallA(str long ptr ptr)
...
...
dlls/difxapi/main.c
View file @
5bee8b4e
...
...
@@ -76,3 +76,13 @@ 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
;
}
VOID
WINAPI
DIFXAPISetLogCallbackA
(
DIFXAPILOGCALLBACK_A
cb
,
VOID
*
ctx
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
cb
,
ctx
);
}
VOID
WINAPI
DIFXAPISetLogCallbackW
(
DIFXAPILOGCALLBACK_W
cb
,
VOID
*
ctx
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
cb
,
ctx
);
}
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