mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 16:36:07 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
128
sdk/include/psdk/gdiplusmetafile.h
Normal file
128
sdk/include/psdk/gdiplusmetafile.h
Normal file
|
@ -0,0 +1,128 @@
|
|||
/*
|
||||
* GdiPlusMetaFile.h
|
||||
*
|
||||
* Windows GDI+
|
||||
*
|
||||
* This file is part of the w32api package.
|
||||
*
|
||||
* THIS SOFTWARE IS NOT COPYRIGHTED
|
||||
*
|
||||
* This source code is offered for use in the public domain. You may
|
||||
* use, modify or distribute it freely.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful but
|
||||
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
||||
* DISCLAIMED. This includes but is not limited to warranties of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*/
|
||||
|
||||
#ifndef _GDIPLUSMETAFILE_H
|
||||
#define _GDIPLUSMETAFILE_H
|
||||
|
||||
class Metafile : public Image
|
||||
{
|
||||
public:
|
||||
Metafile(HDC referenceHdc, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(const WCHAR *filename)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(HDC referenceHdc, const RectF &frameRect, MetafileFrameUnit frameUnit, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(HMETAFILE hWmf, const WmfPlaceableFileHeader *wmfPlaceableFileHeader, BOOL deleteWmf)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(const WCHAR *fileName, HDC referenceHdc, const Rect &frameRect, MetafileFrameUnit frameUnit, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(IStream *stream, HDC referenceHdc, const RectF &frameRect, MetafileFrameUnit frameUnit, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(IStream *stream, HDC referenceHdc, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(IStream *stream, HDC referenceHdc, const Rect &frameRect, MetafileFrameUnit frameUnit, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(const WCHAR *fileName, HDC referenceHdc, const RectF &frameRect, MetafileFrameUnit frameUnit, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(const WCHAR *fileName, HDC referenceHdc, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(IStream *stream)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(HENHMETAFILE hEmf, BOOL deleteEmf)
|
||||
{
|
||||
}
|
||||
|
||||
Metafile(HDC referenceHdc, const Rect &frameRect, MetafileFrameUnit frameUnit, EmfType type, const WCHAR *description)
|
||||
{
|
||||
}
|
||||
|
||||
static UINT EmfToWmfBits(HENHMETAFILE hemf, UINT cbData16, LPBYTE pData16, INT iMapMode, EmfToWmfBitsFlags eFlags)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
UINT GetDownLevelRasterizationLimit(VOID)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
HENHMETAFILE GetHENHMETAFILE(VOID)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static Status GetMetafileHeader(const WCHAR *filename, MetafileHeader *header)
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
static Status GetMetafileHeader(HENHMETAFILE *hEmf, MetafileHeader *header)
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
static Status GetMetafileHeader(HMETAFILE hWmf, const WmfPlaceableFileHeader *wmfPlaceableFileHeader, MetafileHeader *header)
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
Status GetMetafileHeader(MetafileHeader *header) const
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
static Status GetMetafileHeader(IStream *stream, MetafileHeader *header)
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
Status PlayRecord(EmfPlusRecordType recordType, UINT flags, UINT dataSize, const BYTE *data)
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
Status SetDownLevelRasterizationLimit(UINT metafileRasterizationLimitDpi)
|
||||
{
|
||||
return NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
#endif /* _GDIPLUSMETAFILE_H */
|
Loading…
Add table
Add a link
Reference in a new issue