mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35:41 +00:00
Stefan Ginsberg <stefan__100__ at hotmail.com> - Move MetaFile stubs into Metafile.c.
svn path=/trunk/; revision=33817
This commit is contained in:
parent
ba14ded010
commit
5367e27e3a
2 changed files with 55 additions and 71 deletions
|
@ -1,34 +1,35 @@
|
||||||
/*
|
/*
|
||||||
* ReactOS W32 Subsystem
|
* PROJECT: ReactOS Win32k Subsystem
|
||||||
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
|
* LICENSE: GPL - See COPYING in the top level directory
|
||||||
*
|
* FILE: win32k/objects/metafile.c
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* PURPOSE: Metafile Implementation
|
||||||
* it under the terms of the GNU General Public License as published by
|
* PROGRAMMERS: ...
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program 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 General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
||||||
*/
|
*/
|
||||||
/* $Id$ */
|
|
||||||
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include <w32k.h>
|
#include <w32k.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
|
/* System Service Calls ******************************************************/
|
||||||
|
|
||||||
//
|
/*
|
||||||
//
|
* @unimplemented
|
||||||
// Rewrite is in progress, this function is subject to change at any time.
|
*/
|
||||||
// 04/30/2007
|
LONG
|
||||||
//
|
APIENTRY
|
||||||
|
NtGdiConvertMetafileRect(IN HDC hDC,
|
||||||
|
IN OUT PRECTL pRect)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
HDC
|
HDC
|
||||||
STDCALL
|
STDCALL
|
||||||
NtGdiCreateMetafileDC(IN HDC hdc)
|
NtGdiCreateMetafileDC(IN HDC hdc)
|
||||||
|
@ -236,5 +237,37 @@ NtGdiCreateMetafileDC(IN HDC hdc)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
HANDLE
|
||||||
|
APIENTRY
|
||||||
|
NtGdiCreateServerMetaFile(IN DWORD iType,
|
||||||
|
IN ULONG cjData,
|
||||||
|
IN PBYTE pjData,
|
||||||
|
IN DWORD mm,
|
||||||
|
IN DWORD xExt,
|
||||||
|
IN DWORD yExt)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
ULONG
|
||||||
|
APIENTRY
|
||||||
|
NtGdiGetServerMetaFileBits(IN HANDLE hmo,
|
||||||
|
IN ULONG cjData,
|
||||||
|
OUT OPTIONAL PBYTE pjData,
|
||||||
|
OUT PDWORD piType,
|
||||||
|
OUT PDWORD pmm,
|
||||||
|
OUT PDWORD pxExt,
|
||||||
|
OUT PDWORD pyExt)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
|
@ -1647,24 +1647,6 @@ NtGdiCheckBitmapBits(
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
HANDLE
|
|
||||||
APIENTRY
|
|
||||||
NtGdiCreateServerMetaFile(
|
|
||||||
IN DWORD iType,
|
|
||||||
IN ULONG cjData,
|
|
||||||
IN LPBYTE pjData,
|
|
||||||
IN DWORD mm,
|
|
||||||
IN DWORD xExt,
|
|
||||||
IN DWORD yExt)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
@ -1846,19 +1828,6 @@ NtGdiConsoleTextOut(
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
LONG
|
|
||||||
APIENTRY
|
|
||||||
NtGdiConvertMetafileRect(
|
|
||||||
IN HDC hdc,
|
|
||||||
IN OUT PRECTL prect)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
@ -2435,24 +2404,6 @@ NtGdiPolyTextOutW(
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
ULONG
|
|
||||||
APIENTRY
|
|
||||||
NtGdiGetServerMetaFileBits(
|
|
||||||
IN HANDLE hmo,
|
|
||||||
IN ULONG cjData,
|
|
||||||
OUT OPTIONAL LPBYTE pjData,
|
|
||||||
OUT PDWORD piType,
|
|
||||||
OUT PDWORD pmm,
|
|
||||||
OUT PDWORD pxExt,
|
|
||||||
OUT PDWORD pyExt)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue