Rename "SystemTime" to "t" (this is *not* SYSTEMTIME - avoid
[wine/dcerpc.git] / dlls / dciman32 / dciman_main.c
blob4d210624fd00623a2703f3499d9b187f9eeb611e
1 /*
2 * Implementation of DCIMAN32 - DCI Manager
3 * "Device Context Interface" ?
4 *
5 * Copyright 2000 Marcus Meissner
6 */
8 #include <stdio.h>
10 #include "winbase.h"
11 #include "winerror.h"
12 #include "debugtools.h"
14 /***********************************************************************
15 * DCIOpenProvider (DCIMAN32.@)
17 HDC WINAPI
18 DCIOpenProvider(void) {
19 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
20 return 0;
23 /***********************************************************************
24 * DCICloseProvider (DCIMAN32.@)
26 void WINAPI
27 DCICloseProvider(HDC hdc) {
28 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
29 return;