Add stub for DCICreatePrimary.
This commit is contained in:
parent
7ac969d560
commit
49dc0b1e64
|
@ -2,7 +2,7 @@
|
||||||
@ stdcall DCICloseProvider(long)
|
@ stdcall DCICloseProvider(long)
|
||||||
@ stub DCICreateOffscreen
|
@ stub DCICreateOffscreen
|
||||||
@ stub DCICreateOverlay
|
@ stub DCICreateOverlay
|
||||||
@ stub DCICreatePrimary
|
@ stdcall DCICreatePrimary(long ptr)
|
||||||
@ stub DCIDestroy
|
@ stub DCIDestroy
|
||||||
@ stub DCIDraw
|
@ stub DCIDraw
|
||||||
@ stub DCIEndAccess
|
@ stub DCIEndAccess
|
||||||
|
|
|
@ -20,13 +20,15 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
#include "winerror.h"
|
#include "winerror.h"
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(dciman);
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* DllEntryPoint (DCIMAN32.@)
|
* DllEntryPoint (DCIMAN32.@)
|
||||||
*
|
*
|
||||||
|
@ -56,3 +58,14 @@ DCICloseProvider(HDC hdc) {
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* DCICreatePrimary (DCIMAN32.@)
|
||||||
|
*/
|
||||||
|
void WINAPI
|
||||||
|
DCICreatePrimary(HDC hdc, LPVOID pDciSurfaceInfo)
|
||||||
|
{
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
FIXME("%p %p\n", hdc, pDciSurfaceInfo);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue