Commit b7512e48 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Added stub for DCIOpenProvider.

parent c95b1aa3
......@@ -12,7 +12,7 @@ import ntdll.dll
@ stub DCIDraw
@ stub DCIEndAccess
@ stub DCIEnum
@ stub DCIOpenProvider
@ stdcall DCIOpenProvider() DCIOpenProvider
@ stub DCISetClipList
@ stub DCISetDestination
@ stub DCISetSrcDestClip
......
/* nothing here yet */
/*
* Implementation of DCIMAN32 - Direct C? Interface Manager?
*
* Copyright 2000 Marcus Meissner
*/
#include <stdio.h>
#include "winbase.h"
#include "winerror.h"
#include "debugtools.h"
HDC WINAPI
DCIOpenProvider(void) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
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