diff --git a/dlls/dciman32/dciman32.spec b/dlls/dciman32/dciman32.spec index a6aeb765dc0..9214cdbf1f4 100644 --- a/dlls/dciman32/dciman32.spec +++ b/dlls/dciman32/dciman32.spec @@ -12,7 +12,7 @@ import ntdll.dll @ stub DCIDraw @ stub DCIEndAccess @ stub DCIEnum -@ stub DCIOpenProvider +@ stdcall DCIOpenProvider() DCIOpenProvider @ stub DCISetClipList @ stub DCISetDestination @ stub DCISetSrcDestClip diff --git a/dlls/dciman32/dciman_main.c b/dlls/dciman32/dciman_main.c index 67a01ed518c..6aacae6f48a 100644 --- a/dlls/dciman32/dciman_main.c +++ b/dlls/dciman32/dciman_main.c @@ -1 +1,17 @@ -/* nothing here yet */ +/* + * Implementation of DCIMAN32 - Direct C? Interface Manager? + * + * Copyright 2000 Marcus Meissner + */ + +#include + +#include "winbase.h" +#include "winerror.h" +#include "debugtools.h" + +HDC WINAPI +DCIOpenProvider(void) { + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return 0; +}