mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 14:20:15 +00:00
17 lines
293 B
C
17 lines
293 B
C
/*
|
|
* Implementation of DCIMAN32 - Direct C? Interface Manager?
|
|
*
|
|
* Copyright 2000 Marcus Meissner
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "winbase.h"
|
|
#include "winerror.h"
|
|
#include "debugtools.h"
|
|
|
|
HDC WINAPI
|
|
DCIOpenProvider(void) {
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
return 0;
|
|
}
|