Commit 49dc0b1e authored by Brian Vincent's avatar Brian Vincent Committed by Alexandre Julliard

Add stub for DCICreatePrimary.

parent 7ac969d5
......@@ -2,7 +2,7 @@
@ stdcall DCICloseProvider(long)
@ stub DCICreateOffscreen
@ stub DCICreateOverlay
@ stub DCICreatePrimary
@ stdcall DCICreatePrimary(long ptr)
@ stub DCIDestroy
@ stub DCIDraw
@ stub DCIEndAccess
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment