Added DCICloseProvider stub.

oldstable
Andreas Mohr 2001-02-12 01:18:42 +00:00 committed by Alexandre Julliard
parent 0da6d5e614
commit b58ebef63e
2 changed files with 12 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import kernel32.dll
import ntdll.dll
@ stub DCIBeginAccess
@ stub DCICloseProvider
@ stdcall DCICloseProvider(long) DCICloseProvider
@ stub DCICreateOffscreen
@ stub DCICreateOverlay
@ stub DCICreatePrimary

View File

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