2002-06-01 01:06:46 +02:00
|
|
|
/*
|
2001-02-12 02:18:42 +01:00
|
|
|
* Implementation of DCIMAN32 - DCI Manager
|
|
|
|
* "Device Context Interface" ?
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
2000-11-25 02:19:43 +01:00
|
|
|
* Copyright 2000 Marcus Meissner
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-11-25 02:19:43 +01:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2005-04-15 18:11:56 +02:00
|
|
|
#include <stdio.h>
|
2000-11-25 02:19:43 +01:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2000-11-25 02:19:43 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
2005-04-20 20:42:04 +02:00
|
|
|
#include "dciman.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-11-25 02:19:43 +01:00
|
|
|
|
2005-04-15 18:11:56 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dciman);
|
|
|
|
|
2000-11-26 05:03:10 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* DCIOpenProvider (DCIMAN32.@)
|
|
|
|
*/
|
2000-11-25 02:19:43 +01:00
|
|
|
HDC WINAPI
|
|
|
|
DCIOpenProvider(void) {
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
2005-04-20 20:42:04 +02:00
|
|
|
return NULL;
|
2000-11-25 02:19:43 +01:00
|
|
|
}
|
2001-02-12 02:18:42 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* DCICloseProvider (DCIMAN32.@)
|
|
|
|
*/
|
|
|
|
void WINAPI
|
|
|
|
DCICloseProvider(HDC hdc) {
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return;
|
|
|
|
}
|
2005-04-15 18:11:56 +02:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* DCICreatePrimary (DCIMAN32.@)
|
|
|
|
*/
|
2005-04-20 20:42:04 +02:00
|
|
|
int WINAPI
|
|
|
|
DCICreatePrimary(HDC hdc, LPDCISURFACEINFO *pDciSurfaceInfo)
|
2005-04-15 18:11:56 +02:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
FIXME("%p %p\n", hdc, pDciSurfaceInfo);
|
2005-04-20 20:42:04 +02:00
|
|
|
return DCI_FAIL_UNSUPPORTED;
|
2005-04-15 18:11:56 +02:00
|
|
|
}
|