Sweden-Number/dlls/dciman32/dciman_main.c

31 lines
630 B
C
Raw Normal View History

2000-11-25 02:19:43 +01:00
/*
2001-02-12 02:18:42 +01:00
* Implementation of DCIMAN32 - DCI Manager
* "Device Context Interface" ?
2000-11-25 02:19:43 +01:00
*
* Copyright 2000 Marcus Meissner
*/
#include <stdio.h>
#include "winbase.h"
#include "winerror.h"
#include "debugtools.h"
/***********************************************************************
* DCIOpenProvider (DCIMAN32.@)
*/
2000-11-25 02:19:43 +01:00
HDC WINAPI
DCIOpenProvider(void) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
2001-02-12 02:18:42 +01:00
/***********************************************************************
* DCICloseProvider (DCIMAN32.@)
*/
void WINAPI
DCICloseProvider(HDC hdc) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return;
}