Added an unknown VxD error code.
[wine] / dlls / dciman32 / dciman_main.c
1 /* 
2  * Implementation of DCIMAN32 - DCI Manager
3  * "Device Context Interface" ?
4  * 
5  * Copyright 2000 Marcus Meissner
6  */
7
8 #include <stdio.h>
9
10 #include "winbase.h"
11 #include "winerror.h"
12 #include "debugtools.h"
13
14 /***********************************************************************
15  *              DCIOpenProvider (DCIMAN32.@)
16  */
17 HDC WINAPI
18 DCIOpenProvider(void) {
19     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
20     return 0;
21 }
22
23 /***********************************************************************
24  *              DCICloseProvider (DCIMAN32.@)
25  */
26 void WINAPI
27 DCICloseProvider(HDC hdc) {
28     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
29     return;
30 }