Add stub for DCICreatePrimary.
This commit is contained in:
parent
7ac969d560
commit
49dc0b1e64
|
@ -2,7 +2,7 @@
|
|||
@ stdcall DCICloseProvider(long)
|
||||
@ stub DCICreateOffscreen
|
||||
@ stub DCICreateOverlay
|
||||
@ stub DCICreatePrimary
|
||||
@ stdcall DCICreatePrimary(long ptr)
|
||||
@ stub DCIDestroy
|
||||
@ stub DCIDraw
|
||||
@ stub DCIEndAccess
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
#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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue