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
791d4f9f
Commit
791d4f9f
authored
Nov 25, 2014
by
Stefan Leichter
Committed by
Alexandre Julliard
Nov 26, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
difxapi: Add stubs for SetDifxLogCallbackA/W.
parent
53d2778f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
difxapi.spec
dlls/difxapi/difxapi.spec
+2
-0
main.c
dlls/difxapi/main.c
+10
-0
difxapi.h
include/difxapi.h
+4
-0
No files found.
dlls/difxapi/difxapi.spec
View file @
791d4f9f
...
...
@@ -8,3 +8,5 @@
@ stdcall DriverPackagePreinstallW(wstr long)
@ stdcall DriverPackageUninstallA(str long ptr ptr)
@ stdcall DriverPackageUninstallW(wstr long ptr ptr)
@ stdcall SetDifxLogCallbackA(ptr ptr)
@ stdcall SetDifxLogCallbackW(ptr ptr)
dlls/difxapi/main.c
View file @
791d4f9f
...
...
@@ -86,3 +86,13 @@ VOID WINAPI DIFXAPISetLogCallbackW(DIFXAPILOGCALLBACK_W cb, VOID *ctx)
{
FIXME
(
"(%p, %p) stub
\n
"
,
cb
,
ctx
);
}
VOID
WINAPI
SetDifxLogCallbackA
(
DIFXLOGCALLBACK_A
cb
,
VOID
*
ctx
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
cb
,
ctx
);
}
VOID
WINAPI
SetDifxLogCallbackW
(
DIFXLOGCALLBACK_W
cb
,
VOID
*
ctx
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
cb
,
ctx
);
}
include/difxapi.h
View file @
791d4f9f
...
...
@@ -51,6 +51,8 @@ typedef enum _DIFXAPI_LOG
typedef
VOID
(
CALLBACK
*
DIFXAPILOGCALLBACK_A
)(
DIFXAPI_LOG
,
DWORD
,
PCSTR
,
PVOID
);
typedef
VOID
(
CALLBACK
*
DIFXAPILOGCALLBACK_W
)(
DIFXAPI_LOG
,
DWORD
,
PCWSTR
,
PVOID
);
typedef
VOID
(
CALLBACK
*
DIFXLOGCALLBACK_A
)(
DIFXAPI_LOG
,
DWORD
,
PCSTR
,
PVOID
);
typedef
VOID
(
CALLBACK
*
DIFXLOGCALLBACK_W
)(
DIFXAPI_LOG
,
DWORD
,
PCWSTR
,
PVOID
);
VOID
WINAPI
DIFXAPISetLogCallbackA
(
DIFXAPILOGCALLBACK_A
,
VOID
*
);
VOID
WINAPI
DIFXAPISetLogCallbackW
(
DIFXAPILOGCALLBACK_W
,
VOID
*
);
...
...
@@ -62,6 +64,8 @@ DWORD WINAPI DriverPackagePreinstallA(PCSTR,DWORD);
DWORD
WINAPI
DriverPackagePreinstallW
(
PCWSTR
,
DWORD
);
DWORD
WINAPI
DriverPackageUninstallA
(
PCSTR
,
DWORD
,
PCINSTALLERINFO_A
,
BOOL
*
);
DWORD
WINAPI
DriverPackageUninstallW
(
PCWSTR
,
DWORD
,
PCINSTALLERINFO_W
,
BOOL
*
);
VOID
WINAPI
SetDifxLogCallbackA
(
DIFXLOGCALLBACK_A
,
VOID
*
);
VOID
WINAPI
SetDifxLogCallbackW
(
DIFXLOGCALLBACK_W
,
VOID
*
);
#ifdef __cplusplus
}
...
...
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