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
49dc0b1e
Commit
49dc0b1e
authored
Apr 15, 2005
by
Brian Vincent
Committed by
Alexandre Julliard
Apr 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub for DCICreatePrimary.
parent
7ac969d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
dciman32.spec
dlls/dciman32/dciman32.spec
+1
-1
dciman_main.c
dlls/dciman32/dciman_main.c
+14
-1
No files found.
dlls/dciman32/dciman32.spec
View file @
49dc0b1e
...
...
@@ -2,7 +2,7 @@
@ stdcall DCICloseProvider(long)
@ stub DCICreateOffscreen
@ stub DCICreateOverlay
@ st
ub DCICreatePrimary
@ st
dcall DCICreatePrimary(long ptr)
@ stub DCIDestroy
@ stub DCIDraw
@ stub DCIEndAccess
...
...
dlls/dciman32/dciman_main.c
View file @
49dc0b1e
...
...
@@ -20,13 +20,15 @@
*/
#include <stdarg.h>
#include <stdio.h>
#include <stdio.h>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
dciman
);
/***********************************************************************
* DllEntryPoint (DCIMAN32.@)
*
...
...
@@ -56,3 +58,14 @@ DCICloseProvider(HDC hdc) {
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
;
}
/**************************************************************************
* DCICreatePrimary (DCIMAN32.@)
*/
void
WINAPI
DCICreatePrimary
(
HDC
hdc
,
LPVOID
pDciSurfaceInfo
)
{
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
FIXME
(
"%p %p
\n
"
,
hdc
,
pDciSurfaceInfo
);
return
;
}
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