Added DCICloseProvider stub.
diff --git a/dlls/dciman32/dciman32.spec b/dlls/dciman32/dciman32.spec
index ddd778e..b91bcfa 100644
--- a/dlls/dciman32/dciman32.spec
+++ b/dlls/dciman32/dciman32.spec
@@ -5,7 +5,7 @@
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 55380f2..4d21062 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 @@
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
+
+/***********************************************************************
+ * DCICloseProvider (DCIMAN32.@)
+ */
+void WINAPI
+DCICloseProvider(HDC hdc) {
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+ return;
+}