Added stub for DCIOpenProvider.

This commit is contained in:
Marcus Meissner 2000-11-25 01:19:43 +00:00 committed by Alexandre Julliard
parent c95b1aa37f
commit b7512e480e
2 changed files with 18 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import ntdll.dll
@ stub DCIDraw
@ stub DCIEndAccess
@ stub DCIEnum
@ stub DCIOpenProvider
@ stdcall DCIOpenProvider() DCIOpenProvider
@ stub DCISetClipList
@ stub DCISetDestination
@ stub DCISetSrcDestClip

View File

@ -1 +1,17 @@
/* 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;
}