Add stub for DCICreatePrimary.

oldstable
Brian Vincent 2005-04-15 16:11:56 +00:00 committed by Alexandre Julliard
parent 7ac969d560
commit 49dc0b1e64
2 changed files with 15 additions and 2 deletions

View File

@ -2,7 +2,7 @@
@ stdcall DCICloseProvider(long)
@ stub DCICreateOffscreen
@ stub DCICreateOverlay
@ stub DCICreatePrimary
@ stdcall DCICreatePrimary(long ptr)
@ stub DCIDestroy
@ stub DCIDraw
@ stub DCIEndAccess

View File

@ -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;
}