wine-wine/dlls/dciman32/dciman_main.c

73 lines
2.1 KiB
C
Raw Normal View History

2002-05-31 23:06:46 +00:00
/*
2001-02-12 01:18:42 +00:00
* Implementation of DCIMAN32 - DCI Manager
* "Device Context Interface" ?
2002-05-31 23:06:46 +00:00
*
2000-11-25 01:19:43 +00:00
* Copyright 2000 Marcus Meissner
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
2000-11-25 01:19:43 +00:00
*/
#include <stdarg.h>
2005-04-15 16:11:56 +00:00
#include <stdio.h>
2000-11-25 01:19:43 +00:00
#include "windef.h"
2000-11-25 01:19:43 +00:00
#include "winbase.h"
#include "winerror.h"
#include "dciman.h"
#include "wine/debug.h"
2000-11-25 01:19:43 +00:00
2005-04-15 16:11:56 +00:00
WINE_DEFAULT_DEBUG_CHANNEL(dciman);
/***********************************************************************
* DllEntryPoint (DCIMAN32.@)
*
* DCIMAN32 initialisation routine.
*/
BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
{
if (reason == DLL_PROCESS_ATTACH) DisableThreadLibraryCalls( inst );
return TRUE;
}
/***********************************************************************
* DCIOpenProvider (DCIMAN32.@)
*/
2000-11-25 01:19:43 +00:00
HDC WINAPI
DCIOpenProvider(void) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
2000-11-25 01:19:43 +00:00
}
2001-02-12 01:18:42 +00:00
/***********************************************************************
* DCICloseProvider (DCIMAN32.@)
*/
void WINAPI
DCICloseProvider(HDC hdc) {
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return;
}
2005-04-15 16:11:56 +00:00
/**************************************************************************
* DCICreatePrimary (DCIMAN32.@)
*/
int WINAPI
DCICreatePrimary(HDC hdc, LPDCISURFACEINFO *pDciSurfaceInfo)
2005-04-15 16:11:56 +00:00
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
FIXME("%p %p\n", hdc, pDciSurfaceInfo);
return DCI_FAIL_UNSUPPORTED;
2005-04-15 16:11:56 +00:00
}