mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
30 lines
630 B
C
30 lines
630 B
C
/*
|
|
* Implementation of DCIMAN32 - DCI Manager
|
|
* "Device Context Interface" ?
|
|
*
|
|
* Copyright 2000 Marcus Meissner
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "winbase.h"
|
|
#include "winerror.h"
|
|
#include "debugtools.h"
|
|
|
|
/***********************************************************************
|
|
* DCIOpenProvider (DCIMAN32.@)
|
|
*/
|
|
HDC WINAPI
|
|
DCIOpenProvider(void) {
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
return 0;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* DCICloseProvider (DCIMAN32.@)
|
|
*/
|
|
void WINAPI
|
|
DCICloseProvider(HDC hdc) {
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
return;
|
|
}
|