Commit b58ebef6 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Added DCICloseProvider stub.

parent 0da6d5e6
......@@ -5,7 +5,7 @@ import kernel32.dll
import ntdll.dll
@ stub DCIBeginAccess
@ stub DCICloseProvider
@ stdcall DCICloseProvider(long) DCICloseProvider
@ stub DCICreateOffscreen
@ stub DCICreateOverlay
@ stub DCICreatePrimary
......
/*
* Implementation of DCIMAN32 - Direct C? Interface Manager?
* Implementation of DCIMAN32 - DCI Manager
* "Device Context Interface" ?
*
* Copyright 2000 Marcus Meissner
*/
......@@ -18,3 +19,12 @@ DCIOpenProvider(void) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/***********************************************************************
* DCICloseProvider (DCIMAN32.@)
*/
void WINAPI
DCICloseProvider(HDC hdc) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return;
}
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