Added DCICloseProvider stub.
This commit is contained in:
parent
0da6d5e614
commit
b58ebef63e
|
@ -5,7 +5,7 @@ import kernel32.dll
|
||||||
import ntdll.dll
|
import ntdll.dll
|
||||||
|
|
||||||
@ stub DCIBeginAccess
|
@ stub DCIBeginAccess
|
||||||
@ stub DCICloseProvider
|
@ stdcall DCICloseProvider(long) DCICloseProvider
|
||||||
@ stub DCICreateOffscreen
|
@ stub DCICreateOffscreen
|
||||||
@ stub DCICreateOverlay
|
@ stub DCICreateOverlay
|
||||||
@ stub DCICreatePrimary
|
@ stub DCICreatePrimary
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Implementation of DCIMAN32 - Direct C? Interface Manager?
|
* Implementation of DCIMAN32 - DCI Manager
|
||||||
|
* "Device Context Interface" ?
|
||||||
*
|
*
|
||||||
* Copyright 2000 Marcus Meissner
|
* Copyright 2000 Marcus Meissner
|
||||||
*/
|
*/
|
||||||
|
@ -18,3 +19,12 @@ DCIOpenProvider(void) {
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* DCICloseProvider (DCIMAN32.@)
|
||||||
|
*/
|
||||||
|
void WINAPI
|
||||||
|
DCICloseProvider(HDC hdc) {
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue