From b58ebef63e34948f6db982c8b840cbfbaa221d5b Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Mon, 12 Feb 2001 01:18:42 +0000 Subject: [PATCH] Added DCICloseProvider stub. --- dlls/dciman32/dciman32.spec | 2 +- dlls/dciman32/dciman_main.c | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/dlls/dciman32/dciman32.spec b/dlls/dciman32/dciman32.spec index ddd778e29a7..b91bcfa5a58 100644 --- a/dlls/dciman32/dciman32.spec +++ b/dlls/dciman32/dciman32.spec @@ -5,7 +5,7 @@ import kernel32.dll import ntdll.dll @ stub DCIBeginAccess -@ stub DCICloseProvider +@ stdcall DCICloseProvider(long) DCICloseProvider @ stub DCICreateOffscreen @ stub DCICreateOverlay @ stub DCICreatePrimary diff --git a/dlls/dciman32/dciman_main.c b/dlls/dciman32/dciman_main.c index 55380f29c96..4d210624fd0 100644 --- a/dlls/dciman32/dciman_main.c +++ b/dlls/dciman32/dciman_main.c @@ -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; +} -- 2.11.4.GIT