1998-03-15 21:29:56 +01:00
|
|
|
/*
|
1999-05-02 11:23:51 +02:00
|
|
|
* Enhanced metafile functions
|
|
|
|
* Copyright 1998 Douglas Ridgway
|
2002-06-01 01:06:46 +02:00
|
|
|
* 1999 Huw D M Davies
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* NOTES:
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* The enhanced format consists of the following elements:
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* A header
|
|
|
|
* A table of handles to GDI objects
|
|
|
|
* An array of metafile records
|
|
|
|
* A private palette
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* The standard format consists of a header and an array of metafile records.
|
|
|
|
*
|
|
|
|
*/
|
1998-03-15 21:29:56 +01:00
|
|
|
|
2002-04-26 21:05:15 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
#include <string.h>
|
1999-01-20 15:11:07 +01:00
|
|
|
#include <assert.h>
|
2000-11-28 23:40:56 +01:00
|
|
|
#include "winnls.h"
|
1998-03-15 21:29:56 +01:00
|
|
|
#include "winbase.h"
|
1999-03-18 18:39:57 +01:00
|
|
|
#include "wingdi.h"
|
1998-11-07 13:56:31 +01:00
|
|
|
#include "winerror.h"
|
2002-06-04 03:02:51 +02:00
|
|
|
#include "gdi.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1998-03-15 21:29:56 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
|
1999-05-02 11:23:51 +02:00
|
|
|
|
2001-07-25 00:15:47 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GDIOBJHDR header;
|
|
|
|
ENHMETAHEADER *emh;
|
|
|
|
BOOL on_disk; /* true if metafile is on disk */
|
|
|
|
} ENHMETAFILEOBJ;
|
|
|
|
|
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* EMF_Create_HENHMETAFILE
|
|
|
|
*/
|
2001-07-25 00:15:47 +02:00
|
|
|
HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk )
|
1999-05-02 11:23:51 +02:00
|
|
|
{
|
2000-08-19 23:38:55 +02:00
|
|
|
HENHMETAFILE hmf = 0;
|
|
|
|
ENHMETAFILEOBJ *metaObj = GDI_AllocObject( sizeof(ENHMETAFILEOBJ),
|
2002-11-21 22:50:04 +01:00
|
|
|
ENHMETAFILE_MAGIC,
|
|
|
|
(HGDIOBJ *)&hmf, NULL );
|
2000-08-19 23:38:55 +02:00
|
|
|
if (metaObj)
|
|
|
|
{
|
2001-07-25 00:15:47 +02:00
|
|
|
metaObj->emh = emh;
|
|
|
|
metaObj->on_disk = on_disk;
|
2000-08-19 23:38:55 +02:00
|
|
|
GDI_ReleaseObj( hmf );
|
|
|
|
}
|
1999-05-02 11:23:51 +02:00
|
|
|
return hmf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* EMF_Delete_HENHMETAFILE
|
|
|
|
*/
|
|
|
|
static BOOL EMF_Delete_HENHMETAFILE( HENHMETAFILE hmf )
|
|
|
|
{
|
|
|
|
ENHMETAFILEOBJ *metaObj = (ENHMETAFILEOBJ *)GDI_GetObjPtr( hmf,
|
|
|
|
ENHMETAFILE_MAGIC );
|
|
|
|
if(!metaObj) return FALSE;
|
2001-07-25 00:15:47 +02:00
|
|
|
|
|
|
|
if(metaObj->on_disk)
|
1999-05-02 11:23:51 +02:00
|
|
|
UnmapViewOfFile( metaObj->emh );
|
2001-07-25 00:15:47 +02:00
|
|
|
else
|
2000-02-16 23:47:24 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, metaObj->emh );
|
2000-08-19 23:38:55 +02:00
|
|
|
return GDI_FreeObject( hmf, metaObj );
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************
|
|
|
|
* EMF_GetEnhMetaHeader
|
|
|
|
*
|
|
|
|
* Returns ptr to ENHMETAHEADER associated with HENHMETAFILE
|
|
|
|
*/
|
|
|
|
static ENHMETAHEADER *EMF_GetEnhMetaHeader( HENHMETAFILE hmf )
|
|
|
|
{
|
2001-08-24 01:37:00 +02:00
|
|
|
ENHMETAHEADER *ret = NULL;
|
|
|
|
ENHMETAFILEOBJ *metaObj = (ENHMETAFILEOBJ *)GDI_GetObjPtr( hmf, ENHMETAFILE_MAGIC );
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE("hmf %p -> enhmetaObj %p\n", hmf, metaObj);
|
2001-08-24 01:37:00 +02:00
|
|
|
if (metaObj)
|
|
|
|
{
|
|
|
|
ret = metaObj->emh;
|
|
|
|
GDI_ReleaseObj( hmf );
|
|
|
|
}
|
|
|
|
return ret;
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
1999-05-02 11:23:51 +02:00
|
|
|
* EMF_GetEnhMetaFile
|
|
|
|
*
|
|
|
|
*/
|
2001-01-06 02:29:18 +01:00
|
|
|
static HENHMETAFILE EMF_GetEnhMetaFile( HANDLE hFile )
|
1999-05-02 11:23:51 +02:00
|
|
|
{
|
|
|
|
ENHMETAHEADER *emh;
|
|
|
|
HANDLE hMapping;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
hMapping = CreateFileMappingA( hFile, NULL, PAGE_READONLY, 0, 0, NULL );
|
|
|
|
emh = MapViewOfFile( hMapping, FILE_MAP_READ, 0, 0, 0 );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hMapping );
|
|
|
|
|
|
|
|
if (!emh) return 0;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
|
|
|
if (emh->iType != EMR_HEADER || emh->dSignature != ENHMETA_SIGNATURE) {
|
1999-05-23 12:25:25 +02:00
|
|
|
WARN("Invalid emf header type 0x%08lx sig 0x%08lx.\n",
|
1999-05-02 11:23:51 +02:00
|
|
|
emh->iType, emh->dSignature);
|
2003-02-15 00:30:27 +01:00
|
|
|
goto err;
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
|
|
|
|
/* refuse to load unaligned EMF as Windows does */
|
|
|
|
if (emh->nBytes & 3)
|
|
|
|
{
|
|
|
|
WARN("Refusing to load unaligned EMF\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2001-07-25 00:15:47 +02:00
|
|
|
return EMF_Create_HENHMETAFILE( emh, TRUE );
|
2003-02-15 00:30:27 +01:00
|
|
|
|
|
|
|
err:
|
|
|
|
UnmapViewOfFile( emh );
|
|
|
|
return 0;
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileA (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
HENHMETAFILE WINAPI GetEnhMetaFileA(
|
2000-12-02 00:58:28 +01:00
|
|
|
LPCSTR lpszMetaFile /* [in] filename of enhanced metafile */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
HENHMETAFILE hmf;
|
2001-01-06 02:29:18 +01:00
|
|
|
HANDLE hFile;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
hFile = CreateFileA(lpszMetaFile, GENERIC_READ, FILE_SHARE_READ, 0,
|
|
|
|
OPEN_EXISTING, 0, 0);
|
1999-05-02 11:23:51 +02:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE) {
|
1999-05-23 12:25:25 +02:00
|
|
|
WARN("could not open %s\n", lpszMetaFile);
|
1999-05-02 11:23:51 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hmf = EMF_GetEnhMetaFile( hFile );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hFile );
|
1999-05-02 11:23:51 +02:00
|
|
|
return hmf;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
1998-12-10 16:49:22 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileW (GDI32.@)
|
1998-12-10 16:49:22 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI GetEnhMetaFileW(
|
2002-06-01 01:06:46 +02:00
|
|
|
LPCWSTR lpszMetaFile) /* [in] filename of enhanced metafile */
|
1998-12-10 16:49:22 +01:00
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
HENHMETAFILE hmf;
|
2001-01-06 02:29:18 +01:00
|
|
|
HANDLE hFile;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
hFile = CreateFileW(lpszMetaFile, GENERIC_READ, FILE_SHARE_READ, 0,
|
|
|
|
OPEN_EXISTING, 0, 0);
|
1999-05-02 11:23:51 +02:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE) {
|
1999-05-23 12:25:25 +02:00
|
|
|
WARN("could not open %s\n", debugstr_w(lpszMetaFile));
|
1999-05-02 11:23:51 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
hmf = EMF_GetEnhMetaFile( hFile );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hFile );
|
1999-05-02 11:23:51 +02:00
|
|
|
return hmf;
|
1998-12-10 16:49:22 +01:00
|
|
|
}
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileHeader (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
2000-04-13 17:57:34 +02:00
|
|
|
* If buf is NULL, returns the size of buffer required.
|
2002-06-01 01:06:46 +02:00
|
|
|
* Otherwise, copy up to bufsize bytes of enhanced metafile header into
|
2000-04-13 17:57:34 +02:00
|
|
|
* buf.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI GetEnhMetaFileHeader(
|
2000-12-02 00:58:28 +01:00
|
|
|
HENHMETAFILE hmf, /* [in] enhanced metafile */
|
|
|
|
UINT bufsize, /* [in] size of buffer */
|
2002-06-01 01:06:46 +02:00
|
|
|
LPENHMETAHEADER buf /* [out] buffer */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
LPENHMETAHEADER emh;
|
2000-04-13 17:57:34 +02:00
|
|
|
UINT size;
|
1999-05-02 11:23:51 +02:00
|
|
|
|
|
|
|
emh = EMF_GetEnhMetaHeader(hmf);
|
1999-06-12 08:49:52 +02:00
|
|
|
if(!emh) return FALSE;
|
2000-04-13 17:57:34 +02:00
|
|
|
size = emh->nSize;
|
2001-08-24 01:37:00 +02:00
|
|
|
if (!buf) return size;
|
2000-04-13 17:57:34 +02:00
|
|
|
size = min(size, bufsize);
|
|
|
|
memmove(buf, emh, size);
|
|
|
|
return size;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileDescriptionA (GDI32.@)
|
1998-04-13 14:21:30 +02:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI GetEnhMetaFileDescriptionA(
|
2000-12-02 00:58:28 +01:00
|
|
|
HENHMETAFILE hmf, /* [in] enhanced metafile */
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT size, /* [in] size of buf */
|
2000-12-02 00:58:28 +01:00
|
|
|
LPSTR buf /* [out] buffer to receive description */
|
1998-04-13 14:21:30 +02:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
LPENHMETAHEADER emh = EMF_GetEnhMetaHeader(hmf);
|
2000-11-28 23:40:56 +01:00
|
|
|
DWORD len;
|
|
|
|
WCHAR *descrW;
|
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
if(!emh) return FALSE;
|
2001-08-24 01:37:00 +02:00
|
|
|
if(emh->nDescription == 0 || emh->offDescription == 0) return 0;
|
2000-11-28 23:40:56 +01:00
|
|
|
descrW = (WCHAR *) ((char *) emh + emh->offDescription);
|
|
|
|
len = WideCharToMultiByte( CP_ACP, 0, descrW, emh->nDescription, NULL, 0, NULL, NULL );
|
|
|
|
|
2001-08-24 01:37:00 +02:00
|
|
|
if (!buf || !size ) return len;
|
2000-11-28 23:40:56 +01:00
|
|
|
|
|
|
|
len = min( size, len );
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, descrW, emh->nDescription, buf, len, NULL, NULL );
|
|
|
|
return len;
|
1998-04-13 14:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileDescriptionW (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* Copies the description string of an enhanced metafile into a buffer
|
1998-03-15 21:29:56 +01:00
|
|
|
* _buf_.
|
|
|
|
*
|
1998-04-13 14:21:30 +02:00
|
|
|
* If _buf_ is NULL, returns size of _buf_ required. Otherwise, returns
|
|
|
|
* number of characters copied.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT WINAPI GetEnhMetaFileDescriptionW(
|
2000-12-02 00:58:28 +01:00
|
|
|
HENHMETAFILE hmf, /* [in] enhanced metafile */
|
2002-06-01 01:06:46 +02:00
|
|
|
UINT size, /* [in] size of buf */
|
2000-12-02 00:58:28 +01:00
|
|
|
LPWSTR buf /* [out] buffer to receive description */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
LPENHMETAHEADER emh = EMF_GetEnhMetaHeader(hmf);
|
1999-06-12 08:49:52 +02:00
|
|
|
|
|
|
|
if(!emh) return FALSE;
|
2001-08-24 01:37:00 +02:00
|
|
|
if(emh->nDescription == 0 || emh->offDescription == 0) return 0;
|
|
|
|
if (!buf || !size ) return emh->nDescription;
|
|
|
|
|
|
|
|
memmove(buf, (char *) emh + emh->offDescription, min(size,emh->nDescription)*sizeof(WCHAR));
|
2000-03-25 22:44:35 +01:00
|
|
|
return min(size, emh->nDescription);
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
/****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* SetEnhMetaFileBits (GDI32.@)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
|
|
|
* Creates an enhanced metafile by copying _bufsize_ bytes from _buf_.
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI SetEnhMetaFileBits(UINT bufsize, const BYTE *buf)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
{
|
2000-02-16 23:47:24 +01:00
|
|
|
ENHMETAHEADER *emh = HeapAlloc( GetProcessHeap(), 0, bufsize );
|
1999-05-02 11:23:51 +02:00
|
|
|
memmove(emh, buf, bufsize);
|
2001-07-25 00:15:47 +02:00
|
|
|
return EMF_Create_HENHMETAFILE( emh, FALSE );
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* GetEnhMetaFileBits (GDI32.@)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
UINT WINAPI GetEnhMetaFileBits(
|
2002-06-01 01:06:46 +02:00
|
|
|
HENHMETAFILE hmf,
|
|
|
|
UINT bufsize,
|
|
|
|
LPBYTE buf
|
|
|
|
)
|
1999-12-04 04:56:53 +01:00
|
|
|
{
|
2000-04-13 17:57:34 +02:00
|
|
|
LPENHMETAHEADER emh = EMF_GetEnhMetaHeader( hmf );
|
|
|
|
UINT size;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2000-04-13 17:57:34 +02:00
|
|
|
if(!emh) return 0;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2000-04-13 17:57:34 +02:00
|
|
|
size = emh->nBytes;
|
2001-08-24 01:37:00 +02:00
|
|
|
if( buf == NULL ) return size;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2000-04-13 17:57:34 +02:00
|
|
|
size = min( size, bufsize );
|
|
|
|
memmove(buf, emh, size);
|
|
|
|
return size;
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
}
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
typedef struct enum_emh_data
|
|
|
|
{
|
|
|
|
INT mode;
|
|
|
|
XFORM init_transform;
|
|
|
|
XFORM world_transform;
|
|
|
|
INT wndOrgX;
|
|
|
|
INT wndOrgY;
|
|
|
|
INT wndExtX;
|
|
|
|
INT wndExtY;
|
|
|
|
INT vportOrgX;
|
|
|
|
INT vportOrgY;
|
|
|
|
INT vportExtX;
|
|
|
|
INT vportExtY;
|
|
|
|
} enum_emh_data;
|
|
|
|
|
|
|
|
#define ENUM_GET_PRIVATE_DATA(ht) \
|
|
|
|
((enum_emh_data*)(((unsigned char*)(ht))-sizeof (enum_emh_data)))
|
|
|
|
|
|
|
|
#define WIDTH(rect) ( (rect).right - (rect).left )
|
|
|
|
#define HEIGHT(rect) ( (rect).bottom - (rect).top )
|
|
|
|
|
|
|
|
#define IS_WIN9X() (GetVersion()&0x80000000)
|
|
|
|
|
|
|
|
void EMF_Update_MF_Xform(HDC hdc, enum_emh_data *info)
|
|
|
|
{
|
|
|
|
XFORM mapping_mode_trans, final_trans;
|
|
|
|
FLOAT scaleX, scaleY;
|
|
|
|
|
|
|
|
scaleX = (FLOAT)info->vportExtX / (FLOAT)info->wndExtX;
|
|
|
|
scaleY = (FLOAT)info->vportExtY / (FLOAT)info->wndExtY;
|
|
|
|
mapping_mode_trans.eM11 = scaleX;
|
|
|
|
mapping_mode_trans.eM12 = 0.0;
|
|
|
|
mapping_mode_trans.eM21 = 0.0;
|
|
|
|
mapping_mode_trans.eM22 = scaleY;
|
|
|
|
mapping_mode_trans.eDx = (FLOAT)info->vportOrgX - scaleX * (FLOAT)info->wndOrgX;
|
|
|
|
mapping_mode_trans.eDy = (FLOAT)info->vportOrgY - scaleY * (FLOAT)info->wndOrgY;
|
|
|
|
|
|
|
|
CombineTransform(&final_trans, &info->world_transform, &mapping_mode_trans);
|
|
|
|
CombineTransform(&final_trans, &final_trans, &info->init_transform);
|
|
|
|
|
|
|
|
if (!SetWorldTransform(hdc, &final_trans))
|
|
|
|
{
|
|
|
|
ERR("World transform failed!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EMF_SetMapMode(HDC hdc, enum_emh_data *info)
|
|
|
|
{
|
|
|
|
INT horzSize = GetDeviceCaps( hdc, HORZSIZE );
|
|
|
|
INT vertSize = GetDeviceCaps( hdc, VERTSIZE );
|
|
|
|
INT horzRes = GetDeviceCaps( hdc, HORZRES );
|
|
|
|
INT vertRes = GetDeviceCaps( hdc, VERTRES );
|
|
|
|
|
|
|
|
TRACE("%d\n",info->mode);
|
|
|
|
|
|
|
|
switch(info->mode)
|
|
|
|
{
|
|
|
|
case MM_TEXT:
|
|
|
|
info->wndExtX = 1;
|
|
|
|
info->wndExtY = 1;
|
|
|
|
info->vportExtX = 1;
|
|
|
|
info->vportExtY = 1;
|
|
|
|
break;
|
|
|
|
case MM_LOMETRIC:
|
|
|
|
case MM_ISOTROPIC:
|
|
|
|
info->wndExtX = horzSize * 10;
|
|
|
|
info->wndExtY = vertSize * 10;
|
2003-05-11 04:50:21 +02:00
|
|
|
info->vportExtX = horzRes;
|
|
|
|
info->vportExtY = -vertRes;
|
|
|
|
break;
|
|
|
|
case MM_HIMETRIC:
|
|
|
|
info->wndExtX = horzSize * 100;
|
|
|
|
info->wndExtY = vertSize * 100;
|
|
|
|
info->vportExtX = horzRes;
|
|
|
|
info->vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_LOENGLISH:
|
2003-05-11 04:50:21 +02:00
|
|
|
info->wndExtX = MulDiv(1000, horzSize, 254);
|
|
|
|
info->wndExtY = MulDiv(1000, vertSize, 254);
|
|
|
|
info->vportExtX = horzRes;
|
|
|
|
info->vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_HIENGLISH:
|
2003-05-11 04:50:21 +02:00
|
|
|
info->wndExtX = MulDiv(10000, horzSize, 254);
|
|
|
|
info->wndExtY = MulDiv(10000, vertSize, 254);
|
|
|
|
info->vportExtX = horzRes;
|
|
|
|
info->vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_TWIPS:
|
2003-05-11 04:50:21 +02:00
|
|
|
info->wndExtX = MulDiv(14400, horzSize, 254);
|
|
|
|
info->wndExtY = MulDiv(14400, vertSize, 254);
|
|
|
|
info->vportExtX = horzRes;
|
|
|
|
info->vportExtY = -vertRes;
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
case MM_ANISOTROPIC:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* emr_produces_output
|
|
|
|
*
|
|
|
|
* Returns TRUE if the record type writes something to the dc. Used by
|
|
|
|
* PlayEnhMetaFileRecord to determine whether it needs to update the
|
|
|
|
* dc's xform when in win9x mode.
|
|
|
|
*
|
|
|
|
* FIXME: need to test which records should be here.
|
|
|
|
*/
|
|
|
|
static BOOL emr_produces_output(int type)
|
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case EMR_POLYBEZIER:
|
|
|
|
case EMR_POLYGON:
|
|
|
|
case EMR_POLYLINE:
|
|
|
|
case EMR_POLYBEZIERTO:
|
|
|
|
case EMR_POLYLINETO:
|
|
|
|
case EMR_POLYPOLYLINE:
|
|
|
|
case EMR_POLYPOLYGON:
|
|
|
|
case EMR_SETPIXELV:
|
|
|
|
case EMR_MOVETOEX:
|
|
|
|
case EMR_EXCLUDECLIPRECT:
|
|
|
|
case EMR_INTERSECTCLIPRECT:
|
|
|
|
case EMR_SELECTOBJECT:
|
|
|
|
case EMR_ANGLEARC:
|
|
|
|
case EMR_ELLIPSE:
|
|
|
|
case EMR_RECTANGLE:
|
|
|
|
case EMR_ROUNDRECT:
|
|
|
|
case EMR_ARC:
|
|
|
|
case EMR_CHORD:
|
|
|
|
case EMR_PIE:
|
|
|
|
case EMR_EXTFLOODFILL:
|
|
|
|
case EMR_LINETO:
|
|
|
|
case EMR_ARCTO:
|
|
|
|
case EMR_POLYDRAW:
|
|
|
|
case EMR_FILLRGN:
|
|
|
|
case EMR_FRAMERGN:
|
|
|
|
case EMR_INVERTRGN:
|
|
|
|
case EMR_PAINTRGN:
|
|
|
|
case EMR_BITBLT:
|
|
|
|
case EMR_STRETCHBLT:
|
|
|
|
case EMR_MASKBLT:
|
|
|
|
case EMR_PLGBLT:
|
|
|
|
case EMR_SETDIBITSTODEVICE:
|
|
|
|
case EMR_STRETCHDIBITS:
|
|
|
|
case EMR_EXTTEXTOUTA:
|
|
|
|
case EMR_EXTTEXTOUTW:
|
|
|
|
case EMR_POLYBEZIER16:
|
|
|
|
case EMR_POLYGON16:
|
|
|
|
case EMR_POLYLINE16:
|
|
|
|
case EMR_POLYBEZIERTO16:
|
|
|
|
case EMR_POLYLINETO16:
|
|
|
|
case EMR_POLYPOLYLINE16:
|
|
|
|
case EMR_POLYPOLYGON16:
|
|
|
|
case EMR_POLYDRAW16:
|
|
|
|
case EMR_POLYTEXTOUTA:
|
|
|
|
case EMR_POLYTEXTOUTW:
|
|
|
|
case EMR_SMALLTEXTOUT:
|
|
|
|
case EMR_TRANSPARENTBLT:
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* PlayEnhMetaFileRecord (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
|
|
|
* Render a single enhanced metafile record in the device context hdc.
|
|
|
|
*
|
|
|
|
* RETURNS
|
1999-12-25 23:58:59 +01:00
|
|
|
* TRUE (non zero) on success, FALSE on error.
|
1998-03-15 21:29:56 +01:00
|
|
|
* BUGS
|
1998-03-29 21:44:57 +02:00
|
|
|
* Many unimplemented records.
|
1999-12-25 23:58:59 +01:00
|
|
|
* No error handling on record play failures (ie checking return codes)
|
2003-02-15 00:30:27 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* WinNT actually updates the current world transform in this function
|
|
|
|
* whereas Win9x does not.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI PlayEnhMetaFileRecord(
|
2000-12-02 00:58:28 +01:00
|
|
|
HDC hdc, /* [in] device context in which to render EMF record */
|
|
|
|
LPHANDLETABLE handletable, /* [in] array of handles to be used in rendering record */
|
|
|
|
const ENHMETARECORD *mr, /* [in] EMF record to render */
|
|
|
|
UINT handles /* [in] size of handle array */
|
2002-06-01 01:06:46 +02:00
|
|
|
)
|
1998-03-15 21:29:56 +01:00
|
|
|
{
|
|
|
|
int type;
|
2003-02-15 00:30:27 +01:00
|
|
|
RECT tmprc;
|
|
|
|
enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
|
2002-08-17 03:37:50 +02:00
|
|
|
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE("hdc = %p, handletable = %p, record = %p, numHandles = %d\n",
|
|
|
|
hdc, handletable, mr, handles);
|
1998-03-29 21:44:57 +02:00
|
|
|
if (!mr) return FALSE;
|
1998-03-15 21:29:56 +01:00
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
type = mr->iType;
|
1998-03-15 21:29:56 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
/* In Win9x mode we update the xform if the record will produce output */
|
|
|
|
if ( IS_WIN9X() && emr_produces_output(type) )
|
|
|
|
EMF_Update_MF_Xform(hdc, info);
|
|
|
|
|
1999-05-23 12:25:25 +02:00
|
|
|
TRACE(" type=%d\n", type);
|
2002-06-01 01:06:46 +02:00
|
|
|
switch(type)
|
1998-03-15 21:29:56 +01:00
|
|
|
{
|
|
|
|
case EMR_HEADER:
|
2000-04-18 13:52:58 +02:00
|
|
|
break;
|
1998-03-15 21:29:56 +01:00
|
|
|
case EMR_EOF:
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
case EMR_GDICOMMENT:
|
1999-12-12 00:18:10 +01:00
|
|
|
{
|
|
|
|
PEMRGDICOMMENT lpGdiComment = (PEMRGDICOMMENT)mr;
|
|
|
|
/* In an enhanced metafile, there can be both public and private GDI comments */
|
|
|
|
GdiComment( hdc, lpGdiComment->cbData, lpGdiComment->Data );
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_SETMAPMODE:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETMAPMODE pSetMapMode = (PEMRSETMAPMODE) mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
2003-05-11 04:50:21 +02:00
|
|
|
if(info->mode == pSetMapMode->iMode && (info->mode == MM_ISOTROPIC || info->mode == MM_ANISOTROPIC))
|
2003-02-15 00:30:27 +01:00
|
|
|
break;
|
|
|
|
info->mode = pSetMapMode->iMode;
|
|
|
|
EMF_SetMapMode(hdc, info);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETBKMODE:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETBKMODE pSetBkMode = (PEMRSETBKMODE) mr;
|
|
|
|
SetBkMode(hdc, pSetBkMode->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETBKCOLOR:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETBKCOLOR pSetBkColor = (PEMRSETBKCOLOR) mr;
|
|
|
|
SetBkColor(hdc, pSetBkColor->crColor);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETPOLYFILLMODE:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETPOLYFILLMODE pSetPolyFillMode = (PEMRSETPOLYFILLMODE) mr;
|
|
|
|
SetPolyFillMode(hdc, pSetPolyFillMode->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETROP2:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETROP2 pSetROP2 = (PEMRSETROP2) mr;
|
|
|
|
SetROP2(hdc, pSetROP2->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETSTRETCHBLTMODE:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETSTRETCHBLTMODE pSetStretchBltMode = (PEMRSETSTRETCHBLTMODE) mr;
|
|
|
|
SetStretchBltMode(hdc, pSetStretchBltMode->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETTEXTALIGN:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETTEXTALIGN pSetTextAlign = (PEMRSETTEXTALIGN) mr;
|
|
|
|
SetTextAlign(hdc, pSetTextAlign->iMode);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETTEXTCOLOR:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETTEXTCOLOR pSetTextColor = (PEMRSETTEXTCOLOR) mr;
|
|
|
|
SetTextColor(hdc, pSetTextColor->crColor);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SAVEDC:
|
|
|
|
{
|
1999-02-26 12:11:13 +01:00
|
|
|
SaveDC(hdc);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_RESTOREDC:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRRESTOREDC pRestoreDC = (PEMRRESTOREDC) mr;
|
|
|
|
RestoreDC(hdc, pRestoreDC->iRelative);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_INTERSECTCLIPRECT:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRINTERSECTCLIPRECT pClipRect = (PEMRINTERSECTCLIPRECT) mr;
|
|
|
|
IntersectClipRect(hdc, pClipRect->rclClip.left, pClipRect->rclClip.top,
|
|
|
|
pClipRect->rclClip.right, pClipRect->rclClip.bottom);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SELECTOBJECT:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSELECTOBJECT pSelectObject = (PEMRSELECTOBJECT) mr;
|
|
|
|
if( pSelectObject->ihObject & 0x80000000 ) {
|
|
|
|
/* High order bit is set - it's a stock object
|
|
|
|
* Strip the high bit to get the index.
|
|
|
|
* See MSDN article Q142319
|
|
|
|
*/
|
|
|
|
SelectObject( hdc, GetStockObject( pSelectObject->ihObject &
|
|
|
|
0x7fffffff ) );
|
|
|
|
} else {
|
|
|
|
/* High order bit wasn't set - not a stock object
|
|
|
|
*/
|
|
|
|
SelectObject( hdc,
|
|
|
|
(handletable->objectHandle)[pSelectObject->ihObject] );
|
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_DELETEOBJECT:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRDELETEOBJECT pDeleteObject = (PEMRDELETEOBJECT) mr;
|
|
|
|
DeleteObject( (handletable->objectHandle)[pDeleteObject->ihObject]);
|
|
|
|
(handletable->objectHandle)[pDeleteObject->ihObject] = 0;
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETWINDOWORGEX:
|
|
|
|
{
|
2003-02-15 00:30:27 +01:00
|
|
|
PEMRSETWINDOWORGEX pSetWindowOrgEx = (PEMRSETWINDOWORGEX) mr;
|
2002-06-25 01:09:19 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
info->wndOrgX = pSetWindowOrgEx->ptlOrigin.x;
|
|
|
|
info->wndOrgY = pSetWindowOrgEx->ptlOrigin.y;
|
2002-06-25 01:09:19 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
TRACE("SetWindowOrgEx: %d,%d\n",info->wndOrgX,info->wndOrgY);
|
|
|
|
break;
|
1998-03-29 21:44:57 +02:00
|
|
|
}
|
|
|
|
case EMR_SETWINDOWEXTEX:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETWINDOWEXTEX pSetWindowExtEx = (PEMRSETWINDOWEXTEX) mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
|
|
|
|
if(info->mode != MM_ISOTROPIC && info->mode != MM_ANISOTROPIC)
|
|
|
|
break;
|
|
|
|
info->wndExtX = pSetWindowExtEx->szlExtent.cx;
|
|
|
|
info->wndExtY = pSetWindowExtEx->szlExtent.cy;
|
|
|
|
|
|
|
|
TRACE("SetWindowExtEx: %d,%d\n",info->wndExtX,info->wndExtY);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETVIEWPORTORGEX:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETVIEWPORTORGEX pSetViewportOrgEx = (PEMRSETVIEWPORTORGEX) mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
|
|
|
|
|
|
|
|
info->vportOrgX = pSetViewportOrgEx->ptlOrigin.x;
|
|
|
|
info->vportOrgY = pSetViewportOrgEx->ptlOrigin.y;
|
|
|
|
TRACE("SetViewportOrgEx: %d,%d\n",info->vportOrgX,info->vportOrgY);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_SETVIEWPORTEXTEX:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRSETVIEWPORTEXTEX pSetViewportExtEx = (PEMRSETVIEWPORTEXTEX) mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
enum_emh_data *info = ENUM_GET_PRIVATE_DATA(handletable);
|
|
|
|
|
|
|
|
if(info->mode != MM_ISOTROPIC && info->mode != MM_ANISOTROPIC)
|
|
|
|
break;
|
|
|
|
info->vportExtX = pSetViewportExtEx->szlExtent.cx;
|
|
|
|
info->vportExtY = pSetViewportExtEx->szlExtent.cy;
|
|
|
|
TRACE("SetViewportExtEx: %d,%d\n",info->vportExtX,info->vportExtY);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_CREATEPEN:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRCREATEPEN pCreatePen = (PEMRCREATEPEN) mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pCreatePen->ihPen] =
|
2000-04-18 13:52:58 +02:00
|
|
|
CreatePenIndirect(&pCreatePen->lopn);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_EXTCREATEPEN:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMREXTCREATEPEN pPen = (PEMREXTCREATEPEN) mr;
|
|
|
|
LOGBRUSH lb;
|
|
|
|
lb.lbStyle = pPen->elp.elpBrushStyle;
|
|
|
|
lb.lbColor = pPen->elp.elpColor;
|
|
|
|
lb.lbHatch = pPen->elp.elpHatch;
|
|
|
|
|
|
|
|
if(pPen->offBmi || pPen->offBits)
|
|
|
|
FIXME("EMR_EXTCREATEPEN: Need to copy brush bitmap\n");
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pPen->ihPen] =
|
|
|
|
ExtCreatePen(pPen->elp.elpPenStyle, pPen->elp.elpWidth, &lb,
|
2000-04-18 13:52:58 +02:00
|
|
|
pPen->elp.elpNumEntries, pPen->elp.elpStyleEntry);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_CREATEBRUSHINDIRECT:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRCREATEBRUSHINDIRECT pBrush = (PEMRCREATEBRUSHINDIRECT) mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pBrush->ihBrush] =
|
2000-04-18 13:52:58 +02:00
|
|
|
CreateBrushIndirect(&pBrush->lb);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_EXTCREATEFONTINDIRECTW:
|
2000-04-18 13:52:58 +02:00
|
|
|
{
|
|
|
|
PEMREXTCREATEFONTINDIRECTW pFont = (PEMREXTCREATEFONTINDIRECTW) mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[pFont->ihFont] =
|
2000-04-18 13:52:58 +02:00
|
|
|
CreateFontIndirectW(&pFont->elfw.elfLogFont);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
2000-04-18 13:52:58 +02:00
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_MOVETOEX:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRMOVETOEX pMoveToEx = (PEMRMOVETOEX) mr;
|
|
|
|
MoveToEx(hdc, pMoveToEx->ptl.x, pMoveToEx->ptl.y, NULL);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_LINETO:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRLINETO pLineTo = (PEMRLINETO) mr;
|
|
|
|
LineTo(hdc, pLineTo->ptl.x, pLineTo->ptl.y);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_RECTANGLE:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRRECTANGLE pRect = (PEMRRECTANGLE) mr;
|
|
|
|
Rectangle(hdc, pRect->rclBox.left, pRect->rclBox.top,
|
|
|
|
pRect->rclBox.right, pRect->rclBox.bottom);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_ELLIPSE:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRELLIPSE pEllipse = (PEMRELLIPSE) mr;
|
|
|
|
Ellipse(hdc, pEllipse->rclBox.left, pEllipse->rclBox.top,
|
|
|
|
pEllipse->rclBox.right, pEllipse->rclBox.bottom);
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_POLYGON16:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRPOLYGON16 pPoly = (PEMRPOLYGON16) mr;
|
|
|
|
/* Shouldn't use Polygon16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
|
|
|
CONV_POINT16TO32(pPoly->apts + i, pts + i);
|
|
|
|
Polygon(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
case EMR_POLYLINE16:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRPOLYLINE16 pPoly = (PEMRPOLYLINE16) mr;
|
|
|
|
/* Shouldn't use Polyline16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
|
|
|
CONV_POINT16TO32(pPoly->apts + i, pts + i);
|
|
|
|
Polyline(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
break;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
case EMR_POLYLINETO16:
|
|
|
|
{
|
|
|
|
PEMRPOLYLINETO16 pPoly = (PEMRPOLYLINETO16) mr;
|
|
|
|
/* Shouldn't use PolylineTo16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
|
|
|
CONV_POINT16TO32(pPoly->apts + i, pts + i);
|
|
|
|
PolylineTo(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_POLYBEZIER16:
|
|
|
|
{
|
|
|
|
PEMRPOLYBEZIER16 pPoly = (PEMRPOLYBEZIER16) mr;
|
|
|
|
/* Shouldn't use PolyBezier16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
|
|
|
CONV_POINT16TO32(pPoly->apts + i, pts + i);
|
|
|
|
PolyBezier(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case EMR_POLYBEZIERTO16:
|
|
|
|
{
|
|
|
|
PEMRPOLYBEZIERTO16 pPoly = (PEMRPOLYBEZIERTO16) mr;
|
|
|
|
/* Shouldn't use PolyBezierTo16 since pPoly->cpts is DWORD */
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPoly->cpts; i++)
|
|
|
|
CONV_POINT16TO32(pPoly->apts + i, pts + i);
|
|
|
|
PolyBezierTo(hdc, pts, pPoly->cpts);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_POLYPOLYGON16:
|
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRPOLYPOLYGON16 pPolyPoly = (PEMRPOLYPOLYGON16) mr;
|
|
|
|
/* NB POINTS array doesn't start at pPolyPoly->apts it's actually
|
|
|
|
pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2000-04-18 13:52:58 +02:00
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPolyPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPolyPoly->cpts; i++)
|
2000-12-13 21:03:53 +01:00
|
|
|
CONV_POINT16TO32((POINT16*) (pPolyPoly->aPolyCounts +
|
2000-04-18 13:52:58 +02:00
|
|
|
pPolyPoly->nPolys) + i, pts + i);
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2000-04-18 13:52:58 +02:00
|
|
|
PolyPolygon(hdc, pts, (INT*)pPolyPoly->aPolyCounts, pPolyPoly->nPolys);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
|
|
|
}
|
2000-08-20 05:40:04 +02:00
|
|
|
case EMR_POLYPOLYLINE16:
|
|
|
|
{
|
|
|
|
PEMRPOLYPOLYLINE16 pPolyPoly = (PEMRPOLYPOLYLINE16) mr;
|
|
|
|
/* NB POINTS array doesn't start at pPolyPoly->apts it's actually
|
|
|
|
pPolyPoly->aPolyCounts + pPolyPoly->nPolys */
|
|
|
|
|
|
|
|
POINT *pts = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
pPolyPoly->cpts * sizeof(POINT) );
|
|
|
|
DWORD i;
|
|
|
|
for(i = 0; i < pPolyPoly->cpts; i++)
|
2000-12-13 21:03:53 +01:00
|
|
|
CONV_POINT16TO32((POINT16*) (pPolyPoly->aPolyCounts +
|
2000-08-20 05:40:04 +02:00
|
|
|
pPolyPoly->nPolys) + i, pts + i);
|
|
|
|
|
|
|
|
PolyPolyline(hdc, pts, pPolyPoly->aPolyCounts, pPolyPoly->nPolys);
|
|
|
|
HeapFree( GetProcessHeap(), 0, pts );
|
|
|
|
break;
|
|
|
|
}
|
2000-04-18 13:52:58 +02:00
|
|
|
|
1999-02-09 15:08:57 +01:00
|
|
|
case EMR_STRETCHDIBITS:
|
|
|
|
{
|
2001-02-12 02:19:23 +01:00
|
|
|
EMRSTRETCHDIBITS *pStretchDIBits = (EMRSTRETCHDIBITS *)mr;
|
|
|
|
|
|
|
|
StretchDIBits(hdc,
|
|
|
|
pStretchDIBits->xDest,
|
|
|
|
pStretchDIBits->yDest,
|
|
|
|
pStretchDIBits->cxDest,
|
|
|
|
pStretchDIBits->cyDest,
|
|
|
|
pStretchDIBits->xSrc,
|
|
|
|
pStretchDIBits->ySrc,
|
|
|
|
pStretchDIBits->cxSrc,
|
|
|
|
pStretchDIBits->cySrc,
|
|
|
|
(BYTE *)mr + pStretchDIBits->offBitsSrc,
|
|
|
|
(const BITMAPINFO *)((BYTE *)mr + pStretchDIBits->offBmiSrc),
|
|
|
|
pStretchDIBits->iUsageSrc,
|
|
|
|
pStretchDIBits->dwRop);
|
1999-02-09 15:08:57 +01:00
|
|
|
break;
|
1999-12-12 00:18:10 +01:00
|
|
|
}
|
2001-02-12 02:19:23 +01:00
|
|
|
|
|
|
|
case EMR_EXTTEXTOUTA:
|
|
|
|
{
|
|
|
|
PEMREXTTEXTOUTA pExtTextOutA = (PEMREXTTEXTOUTA)mr;
|
|
|
|
RECT rc;
|
|
|
|
|
|
|
|
rc.left = pExtTextOutA->emrtext.rcl.left;
|
|
|
|
rc.top = pExtTextOutA->emrtext.rcl.top;
|
|
|
|
rc.right = pExtTextOutA->emrtext.rcl.right;
|
|
|
|
rc.bottom = pExtTextOutA->emrtext.rcl.bottom;
|
|
|
|
ExtTextOutA(hdc, pExtTextOutA->emrtext.ptlReference.x, pExtTextOutA->emrtext.ptlReference.y,
|
|
|
|
pExtTextOutA->emrtext.fOptions, &rc,
|
|
|
|
(LPSTR)((BYTE *)mr + pExtTextOutA->emrtext.offString), pExtTextOutA->emrtext.nChars,
|
|
|
|
(INT *)((BYTE *)mr + pExtTextOutA->emrtext.offDx));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
case EMR_EXTTEXTOUTW:
|
2001-02-12 02:19:23 +01:00
|
|
|
{
|
|
|
|
PEMREXTTEXTOUTW pExtTextOutW = (PEMREXTTEXTOUTW)mr;
|
|
|
|
RECT rc;
|
|
|
|
|
|
|
|
rc.left = pExtTextOutW->emrtext.rcl.left;
|
|
|
|
rc.top = pExtTextOutW->emrtext.rcl.top;
|
|
|
|
rc.right = pExtTextOutW->emrtext.rcl.right;
|
|
|
|
rc.bottom = pExtTextOutW->emrtext.rcl.bottom;
|
|
|
|
ExtTextOutW(hdc, pExtTextOutW->emrtext.ptlReference.x, pExtTextOutW->emrtext.ptlReference.y,
|
|
|
|
pExtTextOutW->emrtext.fOptions, &rc,
|
|
|
|
(LPWSTR)((BYTE *)mr + pExtTextOutW->emrtext.offString), pExtTextOutW->emrtext.nChars,
|
|
|
|
(INT *)((BYTE *)mr + pExtTextOutW->emrtext.offDx));
|
1998-03-29 21:44:57 +02:00
|
|
|
break;
|
2001-02-12 02:19:23 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_CREATEPALETTE:
|
|
|
|
{
|
|
|
|
PEMRCREATEPALETTE lpCreatePal = (PEMRCREATEPALETTE)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[ lpCreatePal->ihPal ] =
|
1999-12-12 00:18:10 +01:00
|
|
|
CreatePalette( &lpCreatePal->lgpl );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SELECTPALETTE:
|
|
|
|
{
|
|
|
|
PEMRSELECTPALETTE lpSelectPal = (PEMRSELECTPALETTE)mr;
|
|
|
|
|
2001-01-24 20:38:38 +01:00
|
|
|
if( lpSelectPal->ihPal & 0x80000000 ) {
|
|
|
|
SelectPalette( hdc, GetStockObject(lpSelectPal->ihPal & 0x7fffffff), TRUE);
|
|
|
|
} else {
|
|
|
|
(handletable->objectHandle)[ lpSelectPal->ihPal ] =
|
|
|
|
SelectPalette( hdc, (handletable->objectHandle)[lpSelectPal->ihPal], TRUE);
|
|
|
|
}
|
1999-12-12 00:18:10 +01:00
|
|
|
break;
|
|
|
|
}
|
1998-03-29 21:44:57 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_REALIZEPALETTE:
|
|
|
|
{
|
|
|
|
RealizePalette( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_EXTSELECTCLIPRGN:
|
|
|
|
{
|
2003-02-15 00:30:27 +01:00
|
|
|
#if 0
|
1999-12-12 00:18:10 +01:00
|
|
|
PEMREXTSELECTCLIPRGN lpRgn = (PEMREXTSELECTCLIPRGN)mr;
|
2001-02-20 01:48:13 +01:00
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, lpRgn->cbRgnData, (RGNDATA *)lpRgn->RgnData);
|
|
|
|
ExtSelectClipRgn(hdc, hRgn, (INT)(lpRgn->iMode));
|
|
|
|
/* ExtSelectClipRgn created a copy of the region */
|
|
|
|
DeleteObject(hRgn);
|
2003-02-15 00:30:27 +01:00
|
|
|
#endif
|
|
|
|
FIXME("ExtSelectClipRgn\n");
|
2000-12-21 21:16:56 +01:00
|
|
|
break;
|
1999-12-12 00:18:10 +01:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETMETARGN:
|
|
|
|
{
|
|
|
|
SetMetaRgn( hdc );
|
|
|
|
break;
|
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETWORLDTRANSFORM:
|
|
|
|
{
|
|
|
|
PEMRSETWORLDTRANSFORM lpXfrm = (PEMRSETWORLDTRANSFORM)mr;
|
2003-02-15 00:30:27 +01:00
|
|
|
info->world_transform = lpXfrm->xform;
|
1999-12-12 00:18:10 +01:00
|
|
|
break;
|
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYBEZIER:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PEMRPOLYBEZIER lpPolyBez = (PEMRPOLYBEZIER)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
PolyBezier(hdc, (const LPPOINT)lpPolyBez->aptl, (UINT)lpPolyBez->cptl);
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYGON:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYGON lpPoly = (PEMRPOLYGON)mr;
|
|
|
|
Polygon( hdc, (const LPPOINT)lpPoly->aptl, (UINT)lpPoly->cptl );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYLINE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYLINE lpPolyLine = (PEMRPOLYLINE)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
Polyline(hdc, (const LPPOINT)lpPolyLine->aptl, (UINT)lpPolyLine->cptl);
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYBEZIERTO:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYBEZIERTO lpPolyBezierTo = (PEMRPOLYBEZIERTO)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
PolyBezierTo( hdc, (const LPPOINT)lpPolyBezierTo->aptl,
|
|
|
|
(UINT)lpPolyBezierTo->cptl );
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYLINETO:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYLINETO lpPolyLineTo = (PEMRPOLYLINETO)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
PolylineTo( hdc, (const LPPOINT)lpPolyLineTo->aptl,
|
|
|
|
(UINT)lpPolyLineTo->cptl );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYPOLYLINE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRPOLYPOLYLINE pPolyPolyline = (PEMRPOLYPOLYLINE) mr;
|
|
|
|
/* NB Points at pPolyPolyline->aPolyCounts + pPolyPolyline->nPolys */
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2000-04-18 13:52:58 +02:00
|
|
|
PolyPolyline(hdc, (LPPOINT)(pPolyPolyline->aPolyCounts +
|
2002-06-01 01:06:46 +02:00
|
|
|
pPolyPolyline->nPolys),
|
|
|
|
pPolyPolyline->aPolyCounts,
|
|
|
|
pPolyPolyline->nPolys );
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYPOLYGON:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2000-04-18 13:52:58 +02:00
|
|
|
PEMRPOLYPOLYGON pPolyPolygon = (PEMRPOLYPOLYGON) mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2000-04-18 13:52:58 +02:00
|
|
|
/* NB Points at pPolyPolygon->aPolyCounts + pPolyPolygon->nPolys */
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2000-04-18 13:52:58 +02:00
|
|
|
PolyPolygon(hdc, (LPPOINT)(pPolyPolygon->aPolyCounts +
|
|
|
|
pPolyPolygon->nPolys),
|
|
|
|
(INT*)pPolyPolygon->aPolyCounts, pPolyPolygon->nPolys );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETBRUSHORGEX:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSETBRUSHORGEX lpSetBrushOrgEx = (PEMRSETBRUSHORGEX)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
SetBrushOrgEx( hdc,
|
|
|
|
(INT)lpSetBrushOrgEx->ptlOrigin.x,
|
|
|
|
(INT)lpSetBrushOrgEx->ptlOrigin.y,
|
1999-12-25 23:58:59 +01:00
|
|
|
NULL );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETPIXELV:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSETPIXELV lpSetPixelV = (PEMRSETPIXELV)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
SetPixelV( hdc,
|
|
|
|
(INT)lpSetPixelV->ptlPixel.x,
|
|
|
|
(INT)lpSetPixelV->ptlPixel.y,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpSetPixelV->crColor );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETMAPPERFLAGS:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSETMAPPERFLAGS lpSetMapperFlags = (PEMRSETMAPPERFLAGS)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
SetMapperFlags( hdc, lpSetMapperFlags->dwFlags );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETCOLORADJUSTMENT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PEMRSETCOLORADJUSTMENT lpSetColorAdjust = (PEMRSETCOLORADJUSTMENT)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
SetColorAdjustment( hdc, &lpSetColorAdjust->ColorAdjustment );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_OFFSETCLIPRGN:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMROFFSETCLIPRGN lpOffsetClipRgn = (PEMROFFSETCLIPRGN)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
OffsetClipRgn( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpOffsetClipRgn->ptlOffset.x,
|
|
|
|
(INT)lpOffsetClipRgn->ptlOffset.y );
|
2003-02-15 00:30:27 +01:00
|
|
|
FIXME("OffsetClipRgn\n");
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_EXCLUDECLIPRECT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMREXCLUDECLIPRECT lpExcludeClipRect = (PEMREXCLUDECLIPRECT)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
ExcludeClipRect( hdc,
|
|
|
|
lpExcludeClipRect->rclClip.left,
|
|
|
|
lpExcludeClipRect->rclClip.top,
|
|
|
|
lpExcludeClipRect->rclClip.right,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpExcludeClipRect->rclClip.bottom );
|
2003-02-15 00:30:27 +01:00
|
|
|
FIXME("ExcludeClipRect\n");
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SCALEVIEWPORTEXTEX:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSCALEVIEWPORTEXTEX lpScaleViewportExtEx = (PEMRSCALEVIEWPORTEXTEX)mr;
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
if ((info->mode != MM_ISOTROPIC) && (info->mode != MM_ANISOTROPIC))
|
|
|
|
break;
|
|
|
|
if (!lpScaleViewportExtEx->xNum || !lpScaleViewportExtEx->xDenom ||
|
|
|
|
!lpScaleViewportExtEx->xNum || !lpScaleViewportExtEx->yDenom)
|
|
|
|
break;
|
|
|
|
info->vportExtX = (info->vportExtX * lpScaleViewportExtEx->xNum) /
|
|
|
|
lpScaleViewportExtEx->xDenom;
|
|
|
|
info->vportExtY = (info->vportExtY * lpScaleViewportExtEx->yNum) /
|
|
|
|
lpScaleViewportExtEx->yDenom;
|
|
|
|
if (info->vportExtX == 0) info->vportExtX = 1;
|
|
|
|
if (info->vportExtY == 0) info->vportExtY = 1;
|
|
|
|
if (info->mode == MM_ISOTROPIC)
|
|
|
|
FIXME("EMRSCALEVIEWPORTEXTEX MM_ISOTROPIC mapping\n");
|
|
|
|
/* MAPPING_FixIsotropic( dc ); */
|
|
|
|
|
|
|
|
TRACE("EMRSCALEVIEWPORTEXTEX %ld/%ld %ld/%ld\n",
|
|
|
|
lpScaleViewportExtEx->xNum,lpScaleViewportExtEx->xDenom,
|
|
|
|
lpScaleViewportExtEx->yNum,lpScaleViewportExtEx->yDenom);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SCALEWINDOWEXTEX:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSCALEWINDOWEXTEX lpScaleWindowExtEx = (PEMRSCALEWINDOWEXTEX)mr;
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
if ((info->mode != MM_ISOTROPIC) && (info->mode != MM_ANISOTROPIC))
|
|
|
|
break;
|
|
|
|
if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
|
|
|
|
!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->yDenom)
|
|
|
|
break;
|
|
|
|
info->wndExtX = (info->wndExtX * lpScaleWindowExtEx->xNum) /
|
|
|
|
lpScaleWindowExtEx->xDenom;
|
|
|
|
info->wndExtY = (info->wndExtY * lpScaleWindowExtEx->yNum) /
|
|
|
|
lpScaleWindowExtEx->yDenom;
|
|
|
|
if (info->wndExtX == 0) info->wndExtX = 1;
|
|
|
|
if (info->wndExtY == 0) info->wndExtY = 1;
|
|
|
|
if (info->mode == MM_ISOTROPIC)
|
|
|
|
FIXME("EMRSCALEWINDOWEXTEX MM_ISOTROPIC mapping\n");
|
|
|
|
/* MAPPING_FixIsotropic( dc ); */
|
|
|
|
|
|
|
|
TRACE("EMRSCALEWINDOWEXTEX %ld/%ld %ld/%ld\n",
|
|
|
|
lpScaleWindowExtEx->xNum,lpScaleWindowExtEx->xDenom,
|
|
|
|
lpScaleWindowExtEx->yNum,lpScaleWindowExtEx->yDenom);
|
1999-12-25 23:58:59 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_MODIFYWORLDTRANSFORM:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRMODIFYWORLDTRANSFORM lpModifyWorldTrans = (PEMRMODIFYWORLDTRANSFORM)mr;
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
switch(lpModifyWorldTrans->iMode) {
|
|
|
|
case MWT_IDENTITY:
|
|
|
|
info->world_transform.eM11 = info->world_transform.eM22 = 1;
|
|
|
|
info->world_transform.eM12 = info->world_transform.eM21 = 0;
|
|
|
|
info->world_transform.eDx = info->world_transform.eDy = 0;
|
|
|
|
break;
|
|
|
|
case MWT_LEFTMULTIPLY:
|
|
|
|
CombineTransform(&info->world_transform, &lpModifyWorldTrans->xform,
|
|
|
|
&info->world_transform);
|
|
|
|
break;
|
|
|
|
case MWT_RIGHTMULTIPLY:
|
|
|
|
CombineTransform(&info->world_transform, &info->world_transform,
|
|
|
|
&lpModifyWorldTrans->xform);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unknown imode %ld\n", lpModifyWorldTrans->iMode);
|
|
|
|
break;
|
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_ANGLEARC:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PEMRANGLEARC lpAngleArc = (PEMRANGLEARC)mr;
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
AngleArc( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpAngleArc->ptlCenter.x, (INT)lpAngleArc->ptlCenter.y,
|
2002-06-01 01:06:46 +02:00
|
|
|
lpAngleArc->nRadius, lpAngleArc->eStartAngle,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpAngleArc->eSweepAngle );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
|
|
|
case EMR_ROUNDRECT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRROUNDRECT lpRoundRect = (PEMRROUNDRECT)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
RoundRect( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
lpRoundRect->rclBox.left,
|
|
|
|
lpRoundRect->rclBox.top,
|
|
|
|
lpRoundRect->rclBox.right,
|
|
|
|
lpRoundRect->rclBox.bottom,
|
|
|
|
lpRoundRect->szlCorner.cx,
|
|
|
|
lpRoundRect->szlCorner.cy );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_ARC:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRARC lpArc = (PEMRARC)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
Arc( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpArc->rclBox.left,
|
|
|
|
(INT)lpArc->rclBox.top,
|
|
|
|
(INT)lpArc->rclBox.right,
|
|
|
|
(INT)lpArc->rclBox.bottom,
|
2002-06-01 01:06:46 +02:00
|
|
|
(INT)lpArc->ptlStart.x,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpArc->ptlStart.y,
|
|
|
|
(INT)lpArc->ptlEnd.x,
|
|
|
|
(INT)lpArc->ptlEnd.y );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
1999-12-25 23:58:59 +01:00
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_CHORD:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRCHORD lpChord = (PEMRCHORD)mr;
|
|
|
|
|
|
|
|
Chord( hdc,
|
|
|
|
(INT)lpChord->rclBox.left,
|
|
|
|
(INT)lpChord->rclBox.top,
|
|
|
|
(INT)lpChord->rclBox.right,
|
|
|
|
(INT)lpChord->rclBox.bottom,
|
|
|
|
(INT)lpChord->ptlStart.x,
|
|
|
|
(INT)lpChord->ptlStart.y,
|
|
|
|
(INT)lpChord->ptlEnd.x,
|
|
|
|
(INT)lpChord->ptlEnd.y );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_PIE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRPIE lpPie = (PEMRPIE)mr;
|
|
|
|
|
|
|
|
Pie( hdc,
|
|
|
|
(INT)lpPie->rclBox.left,
|
|
|
|
(INT)lpPie->rclBox.top,
|
|
|
|
(INT)lpPie->rclBox.right,
|
|
|
|
(INT)lpPie->rclBox.bottom,
|
|
|
|
(INT)lpPie->ptlStart.x,
|
|
|
|
(INT)lpPie->ptlStart.y,
|
|
|
|
(INT)lpPie->ptlEnd.x,
|
|
|
|
(INT)lpPie->ptlEnd.y );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_ARCTO:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRARC lpArcTo = (PEMRARC)mr;
|
|
|
|
|
|
|
|
ArcTo( hdc,
|
|
|
|
(INT)lpArcTo->rclBox.left,
|
|
|
|
(INT)lpArcTo->rclBox.top,
|
|
|
|
(INT)lpArcTo->rclBox.right,
|
|
|
|
(INT)lpArcTo->rclBox.bottom,
|
|
|
|
(INT)lpArcTo->ptlStart.x,
|
|
|
|
(INT)lpArcTo->ptlStart.y,
|
|
|
|
(INT)lpArcTo->ptlEnd.x,
|
|
|
|
(INT)lpArcTo->ptlEnd.y );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_EXTFLOODFILL:
|
|
|
|
{
|
|
|
|
PEMREXTFLOODFILL lpExtFloodFill = (PEMREXTFLOODFILL)mr;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
ExtFloodFill( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(INT)lpExtFloodFill->ptlStart.x,
|
|
|
|
(INT)lpExtFloodFill->ptlStart.y,
|
|
|
|
lpExtFloodFill->crColor,
|
|
|
|
(UINT)lpExtFloodFill->iMode );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYDRAW:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYDRAW lpPolyDraw = (PEMRPOLYDRAW)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
PolyDraw( hdc,
|
1999-12-25 23:58:59 +01:00
|
|
|
(const LPPOINT)lpPolyDraw->aptl,
|
|
|
|
lpPolyDraw->abTypes,
|
|
|
|
(INT)lpPolyDraw->cptl );
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETARCDIRECTION:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSETARCDIRECTION lpSetArcDirection = (PEMRSETARCDIRECTION)mr;
|
|
|
|
SetArcDirection( hdc, (INT)lpSetArcDirection->iArcDirection );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETMITERLIMIT:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSETMITERLIMIT lpSetMiterLimit = (PEMRSETMITERLIMIT)mr;
|
|
|
|
SetMiterLimit( hdc, lpSetMiterLimit->eMiterLimit, NULL );
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_BEGINPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
BeginPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_ENDPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
EndPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_CLOSEFIGURE:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
CloseFigure( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_FILLPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
/*PEMRFILLPATH lpFillPath = (PEMRFILLPATH)mr;*/
|
|
|
|
FillPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_STROKEANDFILLPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
/*PEMRSTROKEANDFILLPATH lpStrokeAndFillPath = (PEMRSTROKEANDFILLPATH)mr;*/
|
|
|
|
StrokeAndFillPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_STROKEPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
/*PEMRSTROKEPATH lpStrokePath = (PEMRSTROKEPATH)mr;*/
|
|
|
|
StrokePath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_FLATTENPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
FlattenPath( hdc );
|
1999-12-25 23:58:59 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_WIDENPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
WidenPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SELECTCLIPPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
PEMRSELECTCLIPPATH lpSelectClipPath = (PEMRSELECTCLIPPATH)mr;
|
|
|
|
SelectClipPath( hdc, (INT)lpSelectClipPath->iMode );
|
|
|
|
break;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_ABORTPATH:
|
1999-12-25 23:58:59 +01:00
|
|
|
{
|
|
|
|
AbortPath( hdc );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
case EMR_CREATECOLORSPACE:
|
|
|
|
{
|
|
|
|
PEMRCREATECOLORSPACE lpCreateColorSpace = (PEMRCREATECOLORSPACE)mr;
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[lpCreateColorSpace->ihCS] =
|
|
|
|
CreateColorSpaceA( &lpCreateColorSpace->lcs );
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SETCOLORSPACE:
|
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
PEMRSETCOLORSPACE lpSetColorSpace = (PEMRSETCOLORSPACE)mr;
|
|
|
|
SetColorSpace( hdc,
|
2000-01-15 23:17:49 +01:00
|
|
|
(handletable->objectHandle)[lpSetColorSpace->ihCS] );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_DELETECOLORSPACE:
|
|
|
|
{
|
|
|
|
PEMRDELETECOLORSPACE lpDeleteColorSpace = (PEMRDELETECOLORSPACE)mr;
|
|
|
|
DeleteColorSpace( (handletable->objectHandle)[lpDeleteColorSpace->ihCS] );
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
2000-01-15 23:17:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SETICMMODE:
|
|
|
|
{
|
2002-11-04 23:43:24 +01:00
|
|
|
PEMRSETICMMODE lpSetICMMode = (PEMRSETICMMODE)mr;
|
2000-04-18 13:52:58 +02:00
|
|
|
SetICMMode( hdc, (INT)lpSetICMMode->iMode );
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_PIXELFORMAT:
|
2000-01-15 23:17:49 +01:00
|
|
|
{
|
|
|
|
INT iPixelFormat;
|
|
|
|
PEMRPIXELFORMAT lpPixelFormat = (PEMRPIXELFORMAT)mr;
|
|
|
|
|
|
|
|
iPixelFormat = ChoosePixelFormat( hdc, &lpPixelFormat->pfd );
|
2002-06-01 01:06:46 +02:00
|
|
|
SetPixelFormat( hdc, iPixelFormat, &lpPixelFormat->pfd );
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
case EMR_SETPALETTEENTRIES:
|
2000-01-15 23:17:49 +01:00
|
|
|
{
|
|
|
|
PEMRSETPALETTEENTRIES lpSetPaletteEntries = (PEMRSETPALETTEENTRIES)mr;
|
|
|
|
|
|
|
|
SetPaletteEntries( (handletable->objectHandle)[lpSetPaletteEntries->ihPal],
|
|
|
|
(UINT)lpSetPaletteEntries->iStart,
|
|
|
|
(UINT)lpSetPaletteEntries->cEntries,
|
2002-06-01 01:06:46 +02:00
|
|
|
lpSetPaletteEntries->aPalEntries );
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_RESIZEPALETTE:
|
|
|
|
{
|
|
|
|
PEMRRESIZEPALETTE lpResizePalette = (PEMRRESIZEPALETTE)mr;
|
|
|
|
|
|
|
|
ResizePalette( (handletable->objectHandle)[lpResizePalette->ihPal],
|
|
|
|
(UINT)lpResizePalette->cEntries );
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_CREATEDIBPATTERNBRUSHPT:
|
|
|
|
{
|
|
|
|
PEMRCREATEDIBPATTERNBRUSHPT lpCreate = (PEMRCREATEDIBPATTERNBRUSHPT)mr;
|
2002-08-17 20:30:48 +02:00
|
|
|
LPVOID lpPackedStruct;
|
|
|
|
|
|
|
|
/* check that offsets and data are contained within the record */
|
|
|
|
if ( !( (lpCreate->cbBmi>=0) && (lpCreate->cbBits>=0) &&
|
|
|
|
(lpCreate->offBmi>=0) && (lpCreate->offBits>=0) &&
|
|
|
|
((lpCreate->offBmi +lpCreate->cbBmi ) <= mr->nSize) &&
|
|
|
|
((lpCreate->offBits+lpCreate->cbBits) <= mr->nSize) ) )
|
|
|
|
{
|
|
|
|
ERR("Invalid EMR_CREATEDIBPATTERNBRUSHPT record\n");
|
|
|
|
break;
|
|
|
|
}
|
2000-01-15 23:17:49 +01:00
|
|
|
|
|
|
|
/* This is a BITMAPINFO struct followed directly by bitmap bits */
|
2002-08-17 20:30:48 +02:00
|
|
|
lpPackedStruct = HeapAlloc( GetProcessHeap(), 0,
|
|
|
|
lpCreate->cbBmi + lpCreate->cbBits );
|
|
|
|
if(!lpPackedStruct)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-15 23:17:49 +01:00
|
|
|
/* Now pack this structure */
|
2002-06-01 01:06:46 +02:00
|
|
|
memcpy( lpPackedStruct,
|
2000-01-15 23:17:49 +01:00
|
|
|
((BYTE*)lpCreate) + lpCreate->offBmi,
|
2002-06-01 01:06:46 +02:00
|
|
|
lpCreate->cbBmi );
|
2000-01-15 23:17:49 +01:00
|
|
|
memcpy( ((BYTE*)lpPackedStruct) + lpCreate->cbBmi,
|
|
|
|
((BYTE*)lpCreate) + lpCreate->offBits,
|
|
|
|
lpCreate->cbBits );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
(handletable->objectHandle)[lpCreate->ihBrush] =
|
2000-01-15 23:17:49 +01:00
|
|
|
CreateDIBPatternBrushPt( lpPackedStruct,
|
2002-06-01 01:06:46 +02:00
|
|
|
(UINT)lpCreate->iUsage );
|
2000-01-15 23:17:49 +01:00
|
|
|
|
2002-08-17 20:30:48 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, lpPackedStruct);
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
break;
|
2000-01-15 23:17:49 +01:00
|
|
|
}
|
1999-12-25 23:58:59 +01:00
|
|
|
|
2001-02-12 02:19:23 +01:00
|
|
|
case EMR_CREATEMONOBRUSH:
|
|
|
|
{
|
|
|
|
PEMRCREATEMONOBRUSH pCreateMonoBrush = (PEMRCREATEMONOBRUSH)mr;
|
|
|
|
BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pCreateMonoBrush->offBmi);
|
|
|
|
HBITMAP hBmp = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
(BYTE *)mr + pCreateMonoBrush->offBits, pbi, pCreateMonoBrush->iUsage);
|
2001-02-12 02:19:23 +01:00
|
|
|
(handletable->objectHandle)[pCreateMonoBrush->ihBrush] = CreatePatternBrush(hBmp);
|
|
|
|
/* CreatePatternBrush created a copy of the bitmap */
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_BITBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRBITBLT pBitBlt = (PEMRBITBLT)mr;
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
2002-06-25 01:09:19 +02:00
|
|
|
HBITMAP hBmp = 0, hBmpOld = 0;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pBitBlt->offBmiSrc);
|
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pBitBlt->xformSrc);
|
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pBitBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pBitBlt->rclBounds.left, pBitBlt->rclBounds.top,
|
|
|
|
pBitBlt->rclBounds.right - pBitBlt->rclBounds.left,
|
|
|
|
pBitBlt->rclBounds.bottom - pBitBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
2002-06-25 01:09:19 +02:00
|
|
|
if (pBitBlt->offBmiSrc > 0)
|
|
|
|
{
|
|
|
|
hBmp = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(BYTE *)mr + pBitBlt->offBitsSrc, pbi, pBitBlt->iUsageSrc);
|
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
}
|
|
|
|
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
BitBlt(hdc,
|
|
|
|
pBitBlt->xDest,
|
|
|
|
pBitBlt->yDest,
|
|
|
|
pBitBlt->cxDest,
|
|
|
|
pBitBlt->cyDest,
|
|
|
|
hdcSrc,
|
|
|
|
pBitBlt->xSrc,
|
|
|
|
pBitBlt->ySrc,
|
|
|
|
pBitBlt->dwRop);
|
2002-06-25 01:09:19 +02:00
|
|
|
|
|
|
|
if (pBitBlt->offBmiSrc > 0)
|
|
|
|
{
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
}
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_STRETCHBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRSTRETCHBLT pStretchBlt= (PEMRSTRETCHBLT)mr;
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
2002-06-25 01:09:19 +02:00
|
|
|
HBITMAP hBmp = 0, hBmpOld = 0;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
BITMAPINFO *pbi = (BITMAPINFO *)((BYTE *)mr + pStretchBlt->offBmiSrc);
|
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pStretchBlt->xformSrc);
|
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pStretchBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pStretchBlt->rclBounds.left, pStretchBlt->rclBounds.top,
|
|
|
|
pStretchBlt->rclBounds.right - pStretchBlt->rclBounds.left,
|
|
|
|
pStretchBlt->rclBounds.bottom - pStretchBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
2002-06-25 01:09:19 +02:00
|
|
|
if (pStretchBlt->offBmiSrc)
|
|
|
|
{
|
|
|
|
hBmp = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(BYTE *)mr + pStretchBlt->offBitsSrc, pbi, pStretchBlt->iUsageSrc);
|
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
}
|
|
|
|
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
StretchBlt(hdc,
|
|
|
|
pStretchBlt->xDest,
|
|
|
|
pStretchBlt->yDest,
|
|
|
|
pStretchBlt->cxDest,
|
|
|
|
pStretchBlt->cyDest,
|
|
|
|
hdcSrc,
|
|
|
|
pStretchBlt->xSrc,
|
|
|
|
pStretchBlt->ySrc,
|
|
|
|
pStretchBlt->cxSrc,
|
|
|
|
pStretchBlt->cySrc,
|
|
|
|
pStretchBlt->dwRop);
|
2002-06-25 01:09:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
if (pStretchBlt->offBmiSrc)
|
|
|
|
{
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
}
|
|
|
|
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_MASKBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRMASKBLT pMaskBlt= (PEMRMASKBLT)mr;
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
|
|
|
HBITMAP hBmp, hBmpOld, hBmpMask;
|
|
|
|
BITMAPINFO *pbi;
|
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pMaskBlt->xformSrc);
|
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pMaskBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pMaskBlt->rclBounds.left, pMaskBlt->rclBounds.top,
|
|
|
|
pMaskBlt->rclBounds.right - pMaskBlt->rclBounds.left,
|
|
|
|
pMaskBlt->rclBounds.bottom - pMaskBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
|
|
|
pbi = (BITMAPINFO *)((BYTE *)mr + pMaskBlt->offBmiMask);
|
|
|
|
hBmpMask = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(BYTE *)mr + pMaskBlt->offBitsMask, pbi, pMaskBlt->iUsageMask);
|
|
|
|
|
|
|
|
pbi = (BITMAPINFO *)((BYTE *)mr + pMaskBlt->offBmiSrc);
|
|
|
|
hBmp = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(BYTE *)mr + pMaskBlt->offBitsSrc, pbi, pMaskBlt->iUsageSrc);
|
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
MaskBlt(hdc,
|
|
|
|
pMaskBlt->xDest,
|
|
|
|
pMaskBlt->yDest,
|
|
|
|
pMaskBlt->cxDest,
|
|
|
|
pMaskBlt->cyDest,
|
|
|
|
hdcSrc,
|
|
|
|
pMaskBlt->xSrc,
|
|
|
|
pMaskBlt->ySrc,
|
|
|
|
hBmpMask,
|
|
|
|
pMaskBlt->xMask,
|
|
|
|
pMaskBlt->yMask,
|
|
|
|
pMaskBlt->dwRop);
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteObject(hBmpMask);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_PLGBLT:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRPLGBLT pPlgBlt= (PEMRPLGBLT)mr;
|
|
|
|
HDC hdcSrc = CreateCompatibleDC(hdc);
|
|
|
|
HBRUSH hBrush, hBrushOld;
|
|
|
|
HBITMAP hBmp, hBmpOld, hBmpMask;
|
|
|
|
BITMAPINFO *pbi;
|
|
|
|
POINT pts[3];
|
|
|
|
|
|
|
|
SetWorldTransform(hdcSrc, &pPlgBlt->xformSrc);
|
|
|
|
|
2002-10-23 20:50:10 +02:00
|
|
|
pts[0].x = pPlgBlt->aptlDest[0].x; pts[0].y = pPlgBlt->aptlDest[0].y;
|
|
|
|
pts[1].x = pPlgBlt->aptlDest[1].x; pts[1].y = pPlgBlt->aptlDest[1].y;
|
|
|
|
pts[2].x = pPlgBlt->aptlDest[2].x; pts[2].y = pPlgBlt->aptlDest[2].y;
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
|
|
|
|
hBrush = CreateSolidBrush(pPlgBlt->crBkColorSrc);
|
|
|
|
hBrushOld = SelectObject(hdcSrc, hBrush);
|
|
|
|
PatBlt(hdcSrc, pPlgBlt->rclBounds.left, pPlgBlt->rclBounds.top,
|
|
|
|
pPlgBlt->rclBounds.right - pPlgBlt->rclBounds.left,
|
|
|
|
pPlgBlt->rclBounds.bottom - pPlgBlt->rclBounds.top, PATCOPY);
|
|
|
|
SelectObject(hdcSrc, hBrushOld);
|
|
|
|
DeleteObject(hBrush);
|
|
|
|
|
|
|
|
pbi = (BITMAPINFO *)((BYTE *)mr + pPlgBlt->offBmiMask);
|
|
|
|
hBmpMask = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(BYTE *)mr + pPlgBlt->offBitsMask, pbi, pPlgBlt->iUsageMask);
|
|
|
|
|
|
|
|
pbi = (BITMAPINFO *)((BYTE *)mr + pPlgBlt->offBmiSrc);
|
|
|
|
hBmp = CreateDIBitmap(0, (BITMAPINFOHEADER *)pbi, CBM_INIT,
|
|
|
|
(BYTE *)mr + pPlgBlt->offBitsSrc, pbi, pPlgBlt->iUsageSrc);
|
|
|
|
hBmpOld = SelectObject(hdcSrc, hBmp);
|
|
|
|
PlgBlt(hdc,
|
|
|
|
pts,
|
|
|
|
hdcSrc,
|
|
|
|
pPlgBlt->xSrc,
|
|
|
|
pPlgBlt->ySrc,
|
|
|
|
pPlgBlt->cxSrc,
|
|
|
|
pPlgBlt->cySrc,
|
|
|
|
hBmpMask,
|
|
|
|
pPlgBlt->xMask,
|
|
|
|
pPlgBlt->yMask);
|
|
|
|
SelectObject(hdcSrc, hBmpOld);
|
|
|
|
DeleteObject(hBmp);
|
|
|
|
DeleteObject(hBmpMask);
|
|
|
|
DeleteDC(hdcSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_SETDIBITSTODEVICE:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRSETDIBITSTODEVICE pSetDIBitsToDevice = (PEMRSETDIBITSTODEVICE)mr;
|
|
|
|
|
|
|
|
SetDIBitsToDevice(hdc,
|
|
|
|
pSetDIBitsToDevice->xDest,
|
|
|
|
pSetDIBitsToDevice->yDest,
|
|
|
|
pSetDIBitsToDevice->cxSrc,
|
|
|
|
pSetDIBitsToDevice->cySrc,
|
|
|
|
pSetDIBitsToDevice->xSrc,
|
|
|
|
pSetDIBitsToDevice->ySrc,
|
|
|
|
pSetDIBitsToDevice->iStartScan,
|
|
|
|
pSetDIBitsToDevice->cScans,
|
|
|
|
(BYTE *)mr + pSetDIBitsToDevice->offBitsSrc,
|
|
|
|
(BITMAPINFO *)((BYTE *)mr + pSetDIBitsToDevice->offBmiSrc),
|
|
|
|
pSetDIBitsToDevice->iUsageSrc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYTEXTOUTA:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYTEXTOUTA pPolyTextOutA = (PEMRPOLYTEXTOUTA)mr;
|
|
|
|
POLYTEXTA *polytextA = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutA->cStrings * sizeof(POLYTEXTA));
|
|
|
|
LONG i;
|
|
|
|
XFORM xform, xformOld;
|
|
|
|
int gModeOld;
|
|
|
|
|
|
|
|
gModeOld = SetGraphicsMode(hdc, pPolyTextOutA->iGraphicsMode);
|
|
|
|
GetWorldTransform(hdc, &xformOld);
|
|
|
|
|
|
|
|
xform.eM11 = pPolyTextOutA->exScale;
|
|
|
|
xform.eM12 = 0.0;
|
|
|
|
xform.eM21 = 0.0;
|
|
|
|
xform.eM22 = pPolyTextOutA->eyScale;
|
|
|
|
xform.eDx = 0.0;
|
|
|
|
xform.eDy = 0.0;
|
|
|
|
SetWorldTransform(hdc, &xform);
|
|
|
|
|
|
|
|
/* Set up POLYTEXTA structures */
|
|
|
|
for(i = 0; i < pPolyTextOutA->cStrings; i++)
|
|
|
|
{
|
|
|
|
polytextA[i].x = pPolyTextOutA->aemrtext[i].ptlReference.x;
|
|
|
|
polytextA[i].y = pPolyTextOutA->aemrtext[i].ptlReference.y;
|
|
|
|
polytextA[i].n = pPolyTextOutA->aemrtext[i].nChars;
|
|
|
|
polytextA[i].lpstr = (LPSTR)((BYTE *)mr + pPolyTextOutA->aemrtext[i].offString);
|
|
|
|
polytextA[i].uiFlags = pPolyTextOutA->aemrtext[i].fOptions;
|
|
|
|
polytextA[i].rcl.left = pPolyTextOutA->aemrtext[i].rcl.left;
|
|
|
|
polytextA[i].rcl.right = pPolyTextOutA->aemrtext[i].rcl.right;
|
|
|
|
polytextA[i].rcl.top = pPolyTextOutA->aemrtext[i].rcl.top;
|
|
|
|
polytextA[i].rcl.bottom = pPolyTextOutA->aemrtext[i].rcl.bottom;
|
|
|
|
polytextA[i].pdx = (int *)((BYTE *)mr + pPolyTextOutA->aemrtext[i].offDx);
|
|
|
|
}
|
|
|
|
PolyTextOutA(hdc, polytextA, pPolyTextOutA->cStrings);
|
|
|
|
HeapFree(GetProcessHeap(), 0, polytextA);
|
|
|
|
|
|
|
|
SetWorldTransform(hdc, &xformOld);
|
|
|
|
SetGraphicsMode(hdc, gModeOld);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
case EMR_POLYTEXTOUTW:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRPOLYTEXTOUTW pPolyTextOutW = (PEMRPOLYTEXTOUTW)mr;
|
|
|
|
POLYTEXTW *polytextW = HeapAlloc(GetProcessHeap(), 0, pPolyTextOutW->cStrings * sizeof(POLYTEXTW));
|
|
|
|
LONG i;
|
|
|
|
XFORM xform, xformOld;
|
|
|
|
int gModeOld;
|
|
|
|
|
|
|
|
gModeOld = SetGraphicsMode(hdc, pPolyTextOutW->iGraphicsMode);
|
|
|
|
GetWorldTransform(hdc, &xformOld);
|
|
|
|
|
|
|
|
xform.eM11 = pPolyTextOutW->exScale;
|
|
|
|
xform.eM12 = 0.0;
|
|
|
|
xform.eM21 = 0.0;
|
|
|
|
xform.eM22 = pPolyTextOutW->eyScale;
|
|
|
|
xform.eDx = 0.0;
|
|
|
|
xform.eDy = 0.0;
|
|
|
|
SetWorldTransform(hdc, &xform);
|
|
|
|
|
|
|
|
/* Set up POLYTEXTW structures */
|
|
|
|
for(i = 0; i < pPolyTextOutW->cStrings; i++)
|
|
|
|
{
|
|
|
|
polytextW[i].x = pPolyTextOutW->aemrtext[i].ptlReference.x;
|
|
|
|
polytextW[i].y = pPolyTextOutW->aemrtext[i].ptlReference.y;
|
|
|
|
polytextW[i].n = pPolyTextOutW->aemrtext[i].nChars;
|
|
|
|
polytextW[i].lpstr = (LPWSTR)((BYTE *)mr + pPolyTextOutW->aemrtext[i].offString);
|
|
|
|
polytextW[i].uiFlags = pPolyTextOutW->aemrtext[i].fOptions;
|
|
|
|
polytextW[i].rcl.left = pPolyTextOutW->aemrtext[i].rcl.left;
|
|
|
|
polytextW[i].rcl.right = pPolyTextOutW->aemrtext[i].rcl.right;
|
|
|
|
polytextW[i].rcl.top = pPolyTextOutW->aemrtext[i].rcl.top;
|
|
|
|
polytextW[i].rcl.bottom = pPolyTextOutW->aemrtext[i].rcl.bottom;
|
|
|
|
polytextW[i].pdx = (int *)((BYTE *)mr + pPolyTextOutW->aemrtext[i].offDx);
|
|
|
|
}
|
|
|
|
PolyTextOutW(hdc, polytextW, pPolyTextOutW->cStrings);
|
|
|
|
HeapFree(GetProcessHeap(), 0, polytextW);
|
|
|
|
|
|
|
|
SetWorldTransform(hdc, &xformOld);
|
|
|
|
SetGraphicsMode(hdc, gModeOld);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_FILLRGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRFILLRGN pFillRgn = (PEMRFILLRGN)mr;
|
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pFillRgn->cbRgnData, (RGNDATA *)pFillRgn->RgnData);
|
|
|
|
FillRgn(hdc,
|
|
|
|
hRgn,
|
|
|
|
(handletable->objectHandle)[pFillRgn->ihBrush]);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_FRAMERGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRFRAMERGN pFrameRgn = (PEMRFRAMERGN)mr;
|
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pFrameRgn->cbRgnData, (RGNDATA *)pFrameRgn->RgnData);
|
|
|
|
FrameRgn(hdc,
|
|
|
|
hRgn,
|
|
|
|
(handletable->objectHandle)[pFrameRgn->ihBrush],
|
|
|
|
pFrameRgn->szlStroke.cx,
|
|
|
|
pFrameRgn->szlStroke.cy);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_INVERTRGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRINVERTRGN pInvertRgn = (PEMRINVERTRGN)mr;
|
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pInvertRgn->cbRgnData, (RGNDATA *)pInvertRgn->RgnData);
|
|
|
|
InvertRgn(hdc, hRgn);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-12-25 23:58:59 +01:00
|
|
|
case EMR_PAINTRGN:
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
{
|
|
|
|
PEMRPAINTRGN pPaintRgn = (PEMRPAINTRGN)mr;
|
|
|
|
HRGN hRgn = ExtCreateRegion(NULL, pPaintRgn->cbRgnData, (RGNDATA *)pPaintRgn->RgnData);
|
|
|
|
PaintRgn(hdc, hRgn);
|
|
|
|
DeleteObject(hRgn);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-06-25 01:09:19 +02:00
|
|
|
case EMR_SETTEXTJUSTIFICATION:
|
|
|
|
{
|
|
|
|
PEMRSETTEXTJUSTIFICATION pSetTextJust = (PEMRSETTEXTJUSTIFICATION)mr;
|
|
|
|
SetTextJustification(hdc, pSetTextJust->nBreakExtra, pSetTextJust->nBreakCount);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EMR_SETLAYOUT:
|
|
|
|
{
|
|
|
|
PEMRSETLAYOUT pSetLayout = (PEMRSETLAYOUT)mr;
|
|
|
|
SetLayout(hdc, pSetLayout->iMode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
Implement playing of EMR_BITBLT, EMR_STRETCHBLT, EMR_MASKBLT,
EMR_PLGBLT, EMR_SETDIBITSTODEVICE, EMR_POLYTEXTOUTA, EMR_POLYTEXTOUTW,
EMR_FILLRGN, EMR_FRAMERGN, EMR_INVERTRGN, EMR_PAINTRGN enhanced
metafile record types according to specs.
2001-02-12 20:34:07 +01:00
|
|
|
case EMR_POLYDRAW16:
|
2000-01-15 23:17:49 +01:00
|
|
|
case EMR_GLSRECORD:
|
|
|
|
case EMR_GLSBOUNDEDRECORD:
|
2002-06-25 01:09:19 +02:00
|
|
|
case EMR_DRAWESCAPE :
|
|
|
|
case EMR_EXTESCAPE:
|
|
|
|
case EMR_STARTDOC:
|
|
|
|
case EMR_SMALLTEXTOUT:
|
|
|
|
case EMR_FORCEUFIMAPPING:
|
|
|
|
case EMR_NAMEDESCAPE:
|
|
|
|
case EMR_COLORCORRECTPALETTE:
|
|
|
|
case EMR_SETICMPROFILEA:
|
|
|
|
case EMR_SETICMPROFILEW:
|
|
|
|
case EMR_ALPHABLEND:
|
|
|
|
case EMR_TRANSPARENTBLT:
|
|
|
|
case EMR_GRADIENTFILL:
|
|
|
|
case EMR_SETLINKEDUFI:
|
|
|
|
case EMR_COLORMATCHTOTARGETW:
|
|
|
|
case EMR_CREATECOLORSPACEW:
|
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
default:
|
2002-06-01 01:06:46 +02:00
|
|
|
/* From docs: If PlayEnhMetaFileRecord doesn't recognize a
|
1999-12-25 23:58:59 +01:00
|
|
|
record then ignore and return TRUE. */
|
1999-05-23 12:25:25 +02:00
|
|
|
FIXME("type %d is unimplemented\n", type);
|
1998-03-15 21:29:56 +01:00
|
|
|
break;
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
tmprc.left = tmprc.top = 0;
|
|
|
|
tmprc.right = tmprc.bottom = 1000;
|
|
|
|
LPtoDP(hdc, (POINT*)&tmprc, 2);
|
|
|
|
TRACE("L:0,0 - 1000,1000 -> D:%ld,%ld - %ld,%ld\n", tmprc.left,
|
|
|
|
tmprc.top, tmprc.right, tmprc.bottom);
|
|
|
|
|
|
|
|
if ( !IS_WIN9X() )
|
|
|
|
{
|
|
|
|
/* WinNT - update the transform (win9x updates when the next graphics output
|
|
|
|
record is played). */
|
|
|
|
EMF_Update_MF_Xform(hdc, info);
|
|
|
|
}
|
2002-11-22 00:45:47 +01:00
|
|
|
|
1998-03-29 21:44:57 +02:00
|
|
|
return TRUE;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
*
|
2001-02-15 00:11:17 +01:00
|
|
|
* EnumEnhMetaFile (GDI32.@)
|
1998-03-15 21:29:56 +01:00
|
|
|
*
|
|
|
|
* Walk an enhanced metafile, calling a user-specified function _EnhMetaFunc_
|
|
|
|
* for each
|
2002-06-01 01:06:46 +02:00
|
|
|
* record. Returns when either every record has been used or
|
1998-03-15 21:29:56 +01:00
|
|
|
* when _EnhMetaFunc_ returns FALSE.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* TRUE if every record is used, FALSE if any invocation of _EnhMetaFunc_
|
|
|
|
* returns FALSE.
|
|
|
|
*
|
|
|
|
* BUGS
|
1998-03-29 21:44:57 +02:00
|
|
|
* Ignores rect.
|
2003-02-15 00:30:27 +01:00
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* This function behaves differently in Win9x and WinNT.
|
|
|
|
*
|
|
|
|
* In WinNT, the DC's world transform is updated as the EMF changes
|
|
|
|
* the Window/Viewport Extent and Origin or it's world transform.
|
|
|
|
* The actual Window/Viewport Extent and Origin are left untouched.
|
|
|
|
*
|
|
|
|
* In Win9x, the DC is left untouched, and PlayEnhMetaFileRecord
|
|
|
|
* updates the scaling itself but only just before a record that
|
|
|
|
* writes anything to the DC.
|
|
|
|
*
|
|
|
|
* I'm not sure where the data (enum_emh_data) is stored in either
|
|
|
|
* version. For this implementation, it is stored before the handle
|
|
|
|
* table, but it could be stored in the DC, in the EMF handle or in
|
|
|
|
* TLS.
|
|
|
|
* MJM 5 Oct 2002
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI EnumEnhMetaFile(
|
2000-12-02 00:58:28 +01:00
|
|
|
HDC hdc, /* [in] device context to pass to _EnhMetaFunc_ */
|
|
|
|
HENHMETAFILE hmf, /* [in] EMF to walk */
|
2002-06-01 01:06:46 +02:00
|
|
|
ENHMFENUMPROC callback, /* [in] callback function */
|
2000-12-02 00:58:28 +01:00
|
|
|
LPVOID data, /* [in] optional data for callback function */
|
|
|
|
const RECT *lpRect /* [in] bounding rectangle for rendered metafile */
|
1998-03-15 21:29:56 +01:00
|
|
|
)
|
|
|
|
{
|
2000-10-24 03:37:49 +02:00
|
|
|
BOOL ret;
|
2001-08-24 01:37:00 +02:00
|
|
|
ENHMETAHEADER *emh;
|
2000-10-24 03:37:49 +02:00
|
|
|
ENHMETARECORD *emr;
|
|
|
|
DWORD offset;
|
2001-01-10 23:45:33 +01:00
|
|
|
UINT i;
|
1999-06-12 08:49:52 +02:00
|
|
|
HANDLETABLE *ht;
|
1999-05-02 11:23:51 +02:00
|
|
|
INT savedMode = 0;
|
2003-02-15 00:30:27 +01:00
|
|
|
XFORM savedXform;
|
2002-12-02 19:10:57 +01:00
|
|
|
HPEN hPen = NULL;
|
|
|
|
HBRUSH hBrush = NULL;
|
|
|
|
HFONT hFont = NULL;
|
2003-02-15 00:30:27 +01:00
|
|
|
enum_emh_data *info;
|
|
|
|
SIZE vp_size, win_size;
|
|
|
|
POINT vp_org, win_org;
|
|
|
|
INT mapMode = MM_TEXT;
|
2001-01-24 20:38:38 +01:00
|
|
|
|
2000-10-24 03:37:49 +02:00
|
|
|
if(!lpRect)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
emh = EMF_GetEnhMetaHeader(hmf);
|
2000-04-13 17:57:34 +02:00
|
|
|
if(!emh) {
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
info = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY,
|
|
|
|
sizeof (enum_emh_data) + sizeof(HANDLETABLE) * emh->nHandles );
|
|
|
|
if(!info)
|
2000-10-24 03:37:49 +02:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-02-15 00:30:27 +01:00
|
|
|
info->wndOrgX = 0;
|
|
|
|
info->wndOrgY = 0;
|
|
|
|
info->wndExtX = 1;
|
|
|
|
info->wndExtY = 1;
|
|
|
|
info->vportOrgX = 0;
|
|
|
|
info->vportOrgY = 0;
|
|
|
|
info->vportExtX = 1;
|
|
|
|
info->vportExtY = 1;
|
|
|
|
info->world_transform.eM11 = info->world_transform.eM22 = 1;
|
|
|
|
info->world_transform.eM12 = info->world_transform.eM21 = 0;
|
|
|
|
info->world_transform.eDx = info->world_transform.eDy = 0;
|
|
|
|
|
|
|
|
ht = (HANDLETABLE*) &info[1];
|
2000-03-30 22:22:41 +02:00
|
|
|
ht->objectHandle[0] = hmf;
|
2000-04-13 17:57:34 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
if(hdc)
|
2001-01-24 20:38:38 +01:00
|
|
|
{
|
|
|
|
savedMode = SetGraphicsMode(hdc, GM_ADVANCED);
|
|
|
|
GetWorldTransform(hdc, &savedXform);
|
2003-02-15 00:30:27 +01:00
|
|
|
GetViewportExtEx(hdc, &vp_size);
|
|
|
|
GetWindowExtEx(hdc, &win_size);
|
|
|
|
GetViewportOrgEx(hdc, &vp_org);
|
|
|
|
GetWindowOrgEx(hdc, &win_org);
|
|
|
|
mapMode = GetMapMode(hdc);
|
2001-01-24 20:38:38 +01:00
|
|
|
|
|
|
|
/* save the current pen, brush and font */
|
|
|
|
hPen = GetCurrentObject(hdc, OBJ_PEN);
|
|
|
|
hBrush = GetCurrentObject(hdc, OBJ_BRUSH);
|
|
|
|
hFont = GetCurrentObject(hdc, OBJ_FONT);
|
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
info->mode = MM_TEXT;
|
|
|
|
|
|
|
|
if ( IS_WIN9X() )
|
|
|
|
{
|
|
|
|
/* Win95 leaves the vp/win ext/org info alone */
|
|
|
|
info->init_transform.eM11 = 1.0;
|
|
|
|
info->init_transform.eM12 = 0.0;
|
|
|
|
info->init_transform.eM21 = 0.0;
|
|
|
|
info->init_transform.eM22 = 1.0;
|
|
|
|
info->init_transform.eDx = 0.0;
|
|
|
|
info->init_transform.eDy = 0.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* WinNT combines the vp/win ext/org info into a transform */
|
|
|
|
FLOAT xscale, yscale;
|
|
|
|
xscale = (FLOAT)vp_size.cx / (FLOAT)win_size.cx;
|
|
|
|
yscale = (FLOAT)vp_size.cy / (FLOAT)win_size.cy;
|
|
|
|
info->init_transform.eM11 = xscale;
|
|
|
|
info->init_transform.eM12 = 0.0;
|
|
|
|
info->init_transform.eM21 = 0.0;
|
|
|
|
info->init_transform.eM22 = yscale;
|
|
|
|
info->init_transform.eDx = (FLOAT)vp_org.x - xscale * (FLOAT)win_org.x;
|
|
|
|
info->init_transform.eDy = (FLOAT)vp_org.y - yscale * (FLOAT)win_org.y;
|
|
|
|
|
|
|
|
CombineTransform(&info->init_transform, &savedXform, &info->init_transform);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( WIDTH(emh->rclFrame) && HEIGHT(emh->rclFrame) )
|
|
|
|
{
|
|
|
|
FLOAT xSrcPixSize, ySrcPixSize, xscale, yscale;
|
|
|
|
XFORM xform;
|
|
|
|
|
|
|
|
TRACE("rect: %ld,%ld - %ld,%ld. rclFrame: %ld,%ld - %ld,%ld\n",
|
|
|
|
lpRect->left, lpRect->top, lpRect->right, lpRect->bottom,
|
|
|
|
emh->rclFrame.left, emh->rclFrame.top, emh->rclFrame.right,
|
|
|
|
emh->rclFrame.bottom);
|
|
|
|
|
|
|
|
xSrcPixSize = (FLOAT) emh->szlMillimeters.cx / emh->szlDevice.cx;
|
|
|
|
ySrcPixSize = (FLOAT) emh->szlMillimeters.cy / emh->szlDevice.cy;
|
|
|
|
xscale = (FLOAT) WIDTH(*lpRect) * 100.0 /
|
|
|
|
WIDTH(emh->rclFrame) * xSrcPixSize;
|
|
|
|
yscale = (FLOAT) HEIGHT(*lpRect) * 100.0 /
|
|
|
|
HEIGHT(emh->rclFrame) * ySrcPixSize;
|
|
|
|
|
|
|
|
xform.eM11 = xscale;
|
|
|
|
xform.eM12 = 0;
|
|
|
|
xform.eM21 = 0;
|
|
|
|
xform.eM22 = yscale;
|
|
|
|
xform.eDx = (FLOAT) lpRect->left - (FLOAT) WIDTH(*lpRect) / WIDTH(emh->rclFrame) * emh->rclFrame.left;
|
|
|
|
xform.eDy = (FLOAT) lpRect->top - (FLOAT) HEIGHT(*lpRect) / HEIGHT(emh->rclFrame) * emh->rclFrame.top;
|
|
|
|
|
|
|
|
CombineTransform(&info->init_transform, &xform, &info->init_transform);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* WinNT resets the current vp/win org/ext */
|
|
|
|
if ( !IS_WIN9X() )
|
|
|
|
{
|
|
|
|
SetMapMode(hdc, MM_TEXT);
|
|
|
|
SetWindowOrgEx(hdc, 0, 0, NULL);
|
|
|
|
SetViewportOrgEx(hdc, 0, 0, NULL);
|
|
|
|
EMF_Update_MF_Xform(hdc, info);
|
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
|
|
|
ret = TRUE;
|
|
|
|
offset = 0;
|
|
|
|
while(ret && offset < emh->nBytes)
|
|
|
|
{
|
|
|
|
emr = (ENHMETARECORD *)((char *)emh + offset);
|
|
|
|
TRACE("Calling EnumFunc with record type %ld, size %ld\n", emr->iType, emr->nSize);
|
2003-02-15 00:30:27 +01:00
|
|
|
ret = (*callback)(hdc, ht, emr, emh->nHandles, (LPARAM)data);
|
2000-10-24 03:37:49 +02:00
|
|
|
offset += emr->nSize;
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2001-01-24 20:38:38 +01:00
|
|
|
if (hdc)
|
|
|
|
{
|
|
|
|
/* restore pen, brush and font */
|
|
|
|
SelectObject(hdc, hBrush);
|
|
|
|
SelectObject(hdc, hPen);
|
|
|
|
SelectObject(hdc, hFont);
|
|
|
|
|
|
|
|
SetWorldTransform(hdc, &savedXform);
|
|
|
|
if (savedMode)
|
|
|
|
SetGraphicsMode(hdc, savedMode);
|
2003-02-15 00:30:27 +01:00
|
|
|
SetMapMode(hdc, mapMode);
|
|
|
|
SetWindowOrgEx(hdc, win_org.x, win_org.y, NULL);
|
|
|
|
SetWindowExtEx(hdc, win_size.cx, win_size.cy, NULL);
|
|
|
|
SetViewportOrgEx(hdc, vp_org.x, vp_org.y, NULL);
|
|
|
|
SetViewportExtEx(hdc, vp_size.cx, vp_size.cy, NULL);
|
2001-01-24 20:38:38 +01:00
|
|
|
}
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2001-01-24 20:38:38 +01:00
|
|
|
for(i = 1; i < emh->nHandles; i++) /* Don't delete element 0 (hmf) */
|
2000-03-30 22:22:41 +02:00
|
|
|
if( (ht->objectHandle)[i] )
|
|
|
|
DeleteObject( (ht->objectHandle)[i] );
|
2000-10-24 03:37:49 +02:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
HeapFree( GetProcessHeap(), 0, info );
|
1999-05-02 11:23:51 +02:00
|
|
|
return ret;
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
2000-03-30 22:22:41 +02:00
|
|
|
static INT CALLBACK EMF_PlayEnhMetaFileCallback(HDC hdc, HANDLETABLE *ht,
|
2003-02-15 00:30:27 +01:00
|
|
|
const ENHMETARECORD *emr,
|
|
|
|
INT handles, LPARAM data)
|
2000-03-30 22:22:41 +02:00
|
|
|
{
|
|
|
|
return PlayEnhMetaFileRecord(hdc, ht, emr, handles);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-03-30 22:22:41 +02:00
|
|
|
/**************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* PlayEnhMetaFile (GDI32.@)
|
2000-03-30 22:22:41 +02:00
|
|
|
*
|
|
|
|
* Renders an enhanced metafile into a specified rectangle *lpRect
|
|
|
|
* in device context hdc.
|
|
|
|
*
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL WINAPI PlayEnhMetaFile(
|
2000-12-02 00:58:28 +01:00
|
|
|
HDC hdc, /* [in] DC to render into */
|
|
|
|
HENHMETAFILE hmf, /* [in] metafile to render */
|
|
|
|
const RECT *lpRect /* [in] rectangle to place metafile inside */
|
2000-03-30 22:22:41 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return EnumEnhMetaFile(hdc, hmf, EMF_PlayEnhMetaFileCallback, NULL,
|
|
|
|
lpRect);
|
|
|
|
}
|
|
|
|
|
1998-03-15 21:29:56 +01:00
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* DeleteEnhMetaFile (GDI32.@)
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
|
|
|
* Deletes an enhanced metafile and frees the associated storage.
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
1999-05-02 11:23:51 +02:00
|
|
|
BOOL WINAPI DeleteEnhMetaFile(HENHMETAFILE hmf)
|
|
|
|
{
|
|
|
|
return EMF_Delete_HENHMETAFILE( hmf );
|
1998-03-15 21:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* CopyEnhMetaFileA (GDI32.@) Duplicate an enhanced metafile
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1998-03-15 21:29:56 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI CopyEnhMetaFileA(
|
2002-06-01 01:06:46 +02:00
|
|
|
HENHMETAFILE hmfSrc,
|
Release 980503
Thu Apr 30 16:28:12 1998 James Juran <jrj120@psu.edu>
* [scheduler/process.c]
Implemented GetExitCodeProcess. The code is a direct translation
of GetExitCodeThread.
Mon Apr 27 22:20:25 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [loader/pe_image.c]
Unload dummy module when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [files/drive.c]
Make GetDriveType16 return DRIVE_REMOVABLE for TYPE_CDROM.
Make GetCurrentDirectory32 behave like the code does and not
like the help describes.
* [files/profile.c]
Revoke recent change in PROFILE_GetSection and try better
handling of special case.
* [include/windows.h]
Change definition of ACCEL32.
* [misc/commdlg.c]
Replace the GetXXXFilename32 macros by normal code.
Fix two reported bugs in my changes to commdlg.
* [windows/win.c]
Add a hook to catch bogus WM_SIZE messages by emitting a warning
in the appropriate case.
* [objects/bitmap.c]
Reject unreasonbable large size arguments in
CreateCompatibleBitmap32 and add an fixme for that situation.
Sun Apr 26 18:30:07 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [include/ldt.h] [debugger/*.c] [miscemu/instr.c]
Added IS_SELECTOR_SYSTEM and IS_SELECTOR_32BIT macros.
Make instruction emulation support system selectors.
* [loader/*.c]
Started moving NE specific functions to the new loader/ne
directory.
* [memory/environ.c]
Enforce the 127 chars limit only when creating the environment of
a Win16 process.
Sun Apr 26 12:22:23 1998 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed an incredible typo in CopyFile32A that made it unusable
since a rewrite in 970112 (!!).
* [files/directory.c]
Fixed GetTempPath32A/W to include trailing backslash.
* [misc/ver.c]
Make find_pe_resource "work" with corrupt files.
* [misc/wsprintf.c]
Altered WPRINTF_ParseFormatA/W to treat invalid format chars
as normal output, too.
* [msdos/dpmi.c]
Implemented "Allocate/Free real mode callback" (0x0303/0x0304).
Cross your fingers if you need to use it ;) (completely untested)
Implemented "Call real mode proc with far return" (0x0301, tested).
* [msdos/int21.c]
Fixed ioctlGenericBlkDevReq/0x60.
* [relay32/dplayx.spec] [relay32/builtin32.c] [relay32/Makefile.in]
Added built-in DPLAYX.DLL.
* [windows/win.c]
Fixed GetWindowWord()/GWW_HWNDPARENT to return the window's owner
if it has no parent (SDK).
Sat Apr 25 15:09:53 1998 M.T.Fortescue <mark@mtfhpc.demon.co.uk>
* [debugger/db_disasm.c]
Fixed disassemble bug for no-display option and 'lock',
'repne' and 'repe' prefixes.
* [debugger/registers.c]
Added textual flag description output on 'info regs'.
Sat Apr 25 14:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [*/*.c]
Added stubs and/or documentation for the following functions:
LookupPrivilegeValue, OpenService, ControlService, RegGetKeySecurity,
StartService, SetComputerName, DeleteService, CloseServiceHandle,
OpenProcessToken, OpenSCManager, DeregisterEventSource,
WaitForDebugEvent, WaitForInputIdle, RegisterEventSource,
SetDebugErrorLevel, SetConsoleCursorPosition, ChoosePixelFormat,
SetPixelFormat, GetPixelFormat, DescribePixelFormat, SwapBuffers,
PolyBezier, AbortPath, DestroyAcceleratorTable, HeapWalk,
DdeInitialize, DdeUninitialize, DdeConnectList, DdeDisconnectList,
DdeCreateStringHandle, DdePostAdvise, DdeGetData, DdeNameService,
DdeGetLastError, WNetGetDirectoryType, EnumPrinters, RegFlushKey,
RegGetKeySecurity, DllGetClassObject, DllCanUnloadNow, CreateBitmap,
CreateCompatibleBitmap, CreateBitmapIndirect, GetBitmapBits,
SetBitmapBits, LoadImage, CopyImage, LoadBitmap, DrawIcon,
CreateDiscardableBitmap, SetDIBits, GetCharABCWidths, LoadTypeLib,
SetConsoleCtrlHandler, CreateConsoleScreenBuffer, ReadConsoleInput,
GetConsoleCursorInfo, SetConsoleCursorInfo, SetConsoleWindowInfo,
SetConsoleTextAttribute, SetConsoleScreenBufferSize,
FillConsoleOutputCharacter, FillConsoleOutputAttribute,
CreateMailslot, GetMailslotInfo, GetCompressedFileSize,
GetProcessWindowStation, GetThreadDesktop, SetDebugErrorLevel,
WaitForDebugEvent, SetComputerName, CreateMDIWindow.
Thu Apr 23 23:54:04 1998 Douglas Ridgway <ridgway@winehq.com>
* [include/windows.h] [objects/enhmetafile.c] [relay32/gdi32.spec]
Implement CopyEnhMetaFile, Get/SetEnhMetaFileBits, other fixes.
* [include/windows.h] [objects/metafile.c] [relay32/gdi32.spec]
32-bit metafile fixes, implement EnumMetaFile32, GetMetaFileBitsEx.
* [objects/font.c] [graphics/x11drv/xfont.c] [graphics/x11drv/text.c]
Some rotated text support for X11R6 displays.
* [win32/newfns.c] [ole/ole2nls.c]
Moved GetNumberFormat32A.
Wed Apr 22 17:38:20 1998 David Lee Lambert <lamber45@egr.msu.edu>
* [ole/ole2nls.c] [misc/network.c]
Changed some function documentation to the new style.
* [misc/network.c] [include/windows.h] [if1632/user.spec]
[relay32/mpr.spec] [misc/mpr.c]
Added stubs for some Win32 network functions; renamed some
16-bit ones with 32-bit counterparts, as well as
WNetGetDirectoryType; moved the stubs in misc/mpr.c (three of
them!) to misc/network.c.
* [ole/compobj.c] [ole/storage.c] [ole/ole2disp.c]
[ole/ole2nls.c] [ole/folders.c] [ole/moniker.c] [ole/ole2.c]
[graphics/fontengine.c] [graphics/ddraw.c] [graphics/env.c]
[graphics/driver.c] [graphics/escape.c]
Changed fprintf's to proper debug-macros.
* [include/winnls.h]
Added some flags (for internal use).
* [ole/ole2nls.c]
Added the Unicode core function, and worked out a way to hide
the commonality of the core.
* [relay32/kernel32.spec]
Added support for GetDate/Time32A/W.
Wed Apr 22 09:16:03 1998 Gordon Chaffee <chaffee@cs.berkeley.edu>
* [win32/code_page.c]
Fixed problem with MultiByteToWideChar that was introduced in
last release. Made MultiByteToWideChar more compatible with Win32.
* [graphics/x11drv/graphics.c]
Fixed problem with drawing arcs.
Tue Apr 21 11:24:58 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [ole/ole2nls.c]
Move stuff from 0x409 case to Lang_En.
* [relay32/user32.spec] [windows/winpos.c]
Added stubs for GetWindowRgn32 and SetWindowRgn32. Makes Office
Paperclip happy.
Tue Apr 21 11:16:16 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [loader/pe_image.c]
If image is relocated, TLS addresses need to be adjusted.
* [debugger/*.c]
Generalized tests for 32-bit segments.
Tue Apr 21 02:04:59 1998 James Juran <jrj120@psu.edu>
* [misc/*.c] [miscemu/*.c] [msdos/*.c] [if1632/*.c]
[include/*.h] [loader/*.c] [memory/*.c] [multimedia/*.c]
[objects/*.c]
Almost all fprintf statements converted to appropriate
debug messages.
* [README]
Updated "GETTING MORE INFORMATION" section to include WineHQ.
* [documentation/debugger]
Fixed typo.
* [windows/defwnd.c]
Added function documentation.
Sun Apr 19 16:30:58 1998 Marcus Meissner <marcus@mud.de>
* [Make.rules.in]
Added lint target (using lclint).
* [relay32/oleaut32.spec][relay32/Makefile.in][ole/typelib.c]
[ole/ole2disp.c]
Added oleaut32 spec, added some SysString functions.
* [if1632/signal.c]
Added printing of faultaddress in Linux (using CR2 debug register).
* [configure.in]
Added <sys/types.h> for statfs checks.
* [loader/*.c][debugger/break.c][debugger/hash.c]
Started to split win32/win16 module handling, preparing support
for other binary formats (like ELF).
Sat Apr 18 10:07:41 1998 Rein Klazes <rklazes@casema.net>
* [misc/registry.c]
Fixed a bug that made RegQueryValuexxx returning
incorrect registry values.
Fri Apr 17 22:59:22 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/lstr.c]
FormatMessage32*: remove linefeed when nolinefeed set;
check for target underflow.
Fri Apr 17 00:38:14 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [misc/crtdll.c]
Implement xlat_file_ptr for CRT stdin/stdout/stderr address
translation.
Wed Apr 15 20:43:56 1998 Jim Peterson <jspeter@birch.ee.vt.edu>
* [controls/menu.c]
Added 'odaction' parameter to MENU_DrawMenuItem() and redirected
WM_DRAWITEM messages to GetWindow(hwnd,GW_OWNER).
Tue Apr 14 16:17:55 1998 Berend Reitsma <berend@united-info.com>
* [graphics/metafiledrv/init.c] [graphics/painting.c]
[graphics/win16drv/init.c] [graphics/x11drv/graphics.c]
[graphics/x11drv/init.c] [include/gdi.h] [include/x11drv.h]
[relay32/gdi32.spec]
Added PolyPolyline routine.
* [windows/winproc.c]
Changed WINPROC_GetProc() to return proc instead of &(jmp proc).
1998-05-03 21:01:20 +02:00
|
|
|
LPCSTR file)
|
|
|
|
{
|
1999-05-02 11:23:51 +02:00
|
|
|
ENHMETAHEADER *emrSrc = EMF_GetEnhMetaHeader( hmfSrc ), *emrDst;
|
|
|
|
HENHMETAFILE hmfDst;
|
|
|
|
|
1999-06-12 08:49:52 +02:00
|
|
|
if(!emrSrc) return FALSE;
|
1999-05-02 11:23:51 +02:00
|
|
|
if (!file) {
|
2000-02-16 23:47:24 +01:00
|
|
|
emrDst = HeapAlloc( GetProcessHeap(), 0, emrSrc->nBytes );
|
1999-05-02 11:23:51 +02:00
|
|
|
memcpy( emrDst, emrSrc, emrSrc->nBytes );
|
2001-07-25 00:15:47 +02:00
|
|
|
hmfDst = EMF_Create_HENHMETAFILE( emrDst, FALSE );
|
1999-05-02 11:23:51 +02:00
|
|
|
} else {
|
2001-01-06 02:29:18 +01:00
|
|
|
HANDLE hFile;
|
2002-08-17 03:37:50 +02:00
|
|
|
hFile = CreateFileA( file, GENERIC_WRITE | GENERIC_READ, 0,
|
|
|
|
NULL, CREATE_ALWAYS, 0, 0);
|
1999-05-02 11:23:51 +02:00
|
|
|
WriteFile( hFile, emrSrc, emrSrc->nBytes, 0, 0);
|
2002-08-17 03:37:50 +02:00
|
|
|
CloseHandle( hFile );
|
|
|
|
/* Reopen file for reading only, so that apps can share
|
|
|
|
read access to the file while hmf is still valid */
|
|
|
|
hFile = CreateFileA( file, GENERIC_READ, FILE_SHARE_READ,
|
|
|
|
NULL, OPEN_EXISTING, 0, 0);
|
|
|
|
if(hFile == INVALID_HANDLE_VALUE) {
|
|
|
|
ERR("Can't reopen emf for reading\n");
|
|
|
|
return 0;
|
|
|
|
}
|
1999-05-02 11:23:51 +02:00
|
|
|
hmfDst = EMF_GetEnhMetaFile( hFile );
|
2001-07-25 00:15:47 +02:00
|
|
|
CloseHandle( hFile );
|
1999-05-02 11:23:51 +02:00
|
|
|
}
|
|
|
|
return hmfDst;
|
1998-03-29 21:44:57 +02:00
|
|
|
}
|
|
|
|
|
1999-05-02 11:23:51 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
/* Struct to be used to be passed in the LPVOID parameter for cbEnhPaletteCopy */
|
|
|
|
typedef struct tagEMF_PaletteCopy
|
|
|
|
{
|
|
|
|
UINT cEntries;
|
|
|
|
LPPALETTEENTRY lpPe;
|
|
|
|
} EMF_PaletteCopy;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/***************************************************************
|
1999-12-12 00:18:10 +01:00
|
|
|
* Find the EMR_EOF record and then use it to find the
|
2002-06-01 01:06:46 +02:00
|
|
|
* palette entries for this enhanced metafile.
|
|
|
|
* The lpData is actually a pointer to a EMF_PaletteCopy struct
|
1999-12-12 00:18:10 +01:00
|
|
|
* which contains the max number of elements to copy and where
|
|
|
|
* to copy them to.
|
|
|
|
*
|
|
|
|
* NOTE: To be used by GetEnhMetaFilePaletteEntries only!
|
|
|
|
*/
|
|
|
|
INT CALLBACK cbEnhPaletteCopy( HDC a,
|
2003-02-15 00:30:27 +01:00
|
|
|
HANDLETABLE *b,
|
|
|
|
const ENHMETARECORD *lpEMR,
|
1999-12-12 00:18:10 +01:00
|
|
|
INT c,
|
2003-02-15 00:30:27 +01:00
|
|
|
LPARAM lpData )
|
1999-12-12 00:18:10 +01:00
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
if ( lpEMR->iType == EMR_EOF )
|
|
|
|
{
|
|
|
|
PEMREOF lpEof = (PEMREOF)lpEMR;
|
|
|
|
EMF_PaletteCopy* info = (EMF_PaletteCopy*)lpData;
|
2000-03-25 22:44:35 +01:00
|
|
|
DWORD dwNumPalToCopy = min( lpEof->nPalEntries, info->cEntries );
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
TRACE( "copying 0x%08lx palettes\n", dwNumPalToCopy );
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
memcpy( (LPVOID)info->lpPe,
|
|
|
|
(LPVOID)(((LPSTR)lpEof) + lpEof->offPalEntries),
|
1999-12-12 00:18:10 +01:00
|
|
|
sizeof( *(info->lpPe) ) * dwNumPalToCopy );
|
|
|
|
|
|
|
|
/* Update the passed data as a return code */
|
|
|
|
info->lpPe = NULL; /* Palettes were copied! */
|
2002-06-01 01:06:46 +02:00
|
|
|
info->cEntries = (UINT)dwNumPalToCopy;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
return FALSE; /* That's all we need */
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:18:10 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1998-11-07 13:56:31 +01:00
|
|
|
/*****************************************************************************
|
2002-06-01 01:06:46 +02:00
|
|
|
* GetEnhMetaFilePaletteEntries (GDI32.@)
|
|
|
|
*
|
|
|
|
* Copy the palette and report size
|
|
|
|
*
|
1999-12-12 00:18:10 +01:00
|
|
|
* BUGS: Error codes (SetLastError) are not set on failures
|
1998-11-07 13:56:31 +01:00
|
|
|
*/
|
1999-12-12 00:18:10 +01:00
|
|
|
UINT WINAPI GetEnhMetaFilePaletteEntries( HENHMETAFILE hEmf,
|
|
|
|
UINT cEntries,
|
|
|
|
LPPALETTEENTRY lpPe )
|
1998-11-07 13:56:31 +01:00
|
|
|
{
|
1999-12-12 00:18:10 +01:00
|
|
|
ENHMETAHEADER* enhHeader = EMF_GetEnhMetaHeader( hEmf );
|
2002-06-01 01:06:46 +02:00
|
|
|
EMF_PaletteCopy infoForCallBack;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE( "(%p,%d,%p)\n", hEmf, cEntries, lpPe );
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* First check if there are any palettes associated with
|
|
|
|
this metafile. */
|
2001-08-24 01:37:00 +02:00
|
|
|
if ( enhHeader->nPalEntries == 0 ) return 0;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* Is the user requesting the number of palettes? */
|
2001-08-24 01:37:00 +02:00
|
|
|
if ( lpPe == NULL ) return (UINT)enhHeader->nPalEntries;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* Copy cEntries worth of PALETTEENTRY structs into the buffer */
|
|
|
|
infoForCallBack.cEntries = cEntries;
|
2002-06-01 01:06:46 +02:00
|
|
|
infoForCallBack.lpPe = lpPe;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
if ( !EnumEnhMetaFile( 0, hEmf, cbEnhPaletteCopy,
|
2003-02-15 00:30:27 +01:00
|
|
|
&infoForCallBack, 0 ) )
|
2001-08-24 01:37:00 +02:00
|
|
|
return GDI_ERROR;
|
1999-12-12 00:18:10 +01:00
|
|
|
|
|
|
|
/* Verify that the callback executed correctly */
|
|
|
|
if ( infoForCallBack.lpPe != NULL )
|
|
|
|
{
|
|
|
|
/* Callback proc had error! */
|
|
|
|
ERR( "cbEnhPaletteCopy didn't execute correctly\n" );
|
2001-08-24 01:37:00 +02:00
|
|
|
return GDI_ERROR;
|
1999-12-12 00:18:10 +01:00
|
|
|
}
|
|
|
|
|
2001-08-24 01:37:00 +02:00
|
|
|
return infoForCallBack.cEntries;
|
1998-11-07 13:56:31 +01:00
|
|
|
}
|
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
typedef struct gdi_mf_comment
|
|
|
|
{
|
|
|
|
DWORD ident;
|
|
|
|
DWORD iComment;
|
|
|
|
DWORD nVersion;
|
|
|
|
DWORD nChecksum;
|
|
|
|
DWORD fFlags;
|
|
|
|
DWORD cbWinMetaFile;
|
|
|
|
} gdi_mf_comment;
|
|
|
|
|
1998-11-07 13:56:31 +01:00
|
|
|
/******************************************************************
|
2001-02-15 00:11:17 +01:00
|
|
|
* SetWinMetaFileBits (GDI32.@)
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1998-11-07 13:56:31 +01:00
|
|
|
* Translate from old style to new style.
|
1999-12-04 04:56:53 +01:00
|
|
|
*
|
1998-11-07 13:56:31 +01:00
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
HENHMETAFILE WINAPI SetWinMetaFileBits(UINT cbBuffer,
|
1998-11-07 13:56:31 +01:00
|
|
|
CONST BYTE *lpbBuffer,
|
1999-02-26 12:11:13 +01:00
|
|
|
HDC hdcRef,
|
|
|
|
CONST METAFILEPICT *lpmfp
|
2002-06-01 01:06:46 +02:00
|
|
|
)
|
1998-11-07 13:56:31 +01:00
|
|
|
{
|
2002-08-17 03:37:50 +02:00
|
|
|
HMETAFILE hmf = 0;
|
|
|
|
HENHMETAFILE ret = 0;
|
|
|
|
HDC hdc = 0, hdcdisp = 0;
|
|
|
|
METAFILEPICT mfp;
|
|
|
|
RECT rc, *prcFrame = NULL;
|
2003-02-15 00:30:27 +01:00
|
|
|
gdi_mf_comment *mfcomment;
|
|
|
|
UINT mfcomment_size;
|
|
|
|
INT horzres, vertres, horzsize, vertsize, xext, yext;
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-11-22 23:16:53 +01:00
|
|
|
TRACE("(%d, %p, %p, %p)\n", cbBuffer, lpbBuffer, hdcRef, lpmfp);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
hmf = SetMetaFileBitsEx(cbBuffer, lpbBuffer);
|
|
|
|
if(!hmf)
|
|
|
|
{
|
|
|
|
WARN("SetMetaFileBitsEx failed\n");
|
2002-08-17 03:37:50 +02:00
|
|
|
return 0;
|
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
if(!hdcRef)
|
|
|
|
hdcRef = hdcdisp = CreateDCA("DISPLAY", NULL, NULL, NULL);
|
|
|
|
|
|
|
|
if(!lpmfp) {
|
|
|
|
lpmfp = &mfp;
|
|
|
|
mfp.mm = MM_ANISOTROPIC;
|
|
|
|
mfp.xExt = 100;
|
|
|
|
mfp.yExt = 100;
|
|
|
|
FIXME("Correct Exts from dc\n");
|
2003-02-15 00:30:27 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-08-17 03:37:50 +02:00
|
|
|
TRACE("mm = %ld %ldx%ld\n", lpmfp->mm, lpmfp->xExt, lpmfp->yExt);
|
2003-02-15 00:30:27 +01:00
|
|
|
if ( ( mfp.xExt < 0 ) || ( mfp.yExt < 0) )
|
|
|
|
FIXME("Negative coordinates!\n");
|
|
|
|
}
|
2002-08-17 03:37:50 +02:00
|
|
|
|
|
|
|
if(lpmfp->mm == MM_ISOTROPIC || lpmfp->mm == MM_ANISOTROPIC) {
|
|
|
|
rc.left = rc.top = 0;
|
|
|
|
rc.right = lpmfp->xExt;
|
|
|
|
rc.bottom = lpmfp->yExt;
|
|
|
|
prcFrame = &rc;
|
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
if(!(hdc = CreateEnhMetaFileW(hdcRef, NULL, prcFrame, NULL))) {
|
|
|
|
ERR("CreateEnhMetaFile fails?\n");
|
|
|
|
goto end;
|
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
horzres = GetDeviceCaps(hdcRef, HORZRES);
|
|
|
|
vertres = GetDeviceCaps(hdcRef, VERTRES);
|
|
|
|
horzsize = GetDeviceCaps(hdcRef, HORZSIZE);
|
|
|
|
vertsize = GetDeviceCaps(hdcRef, VERTSIZE);
|
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
if(hdcdisp) {
|
|
|
|
DeleteDC(hdcdisp);
|
|
|
|
hdcRef = 0;
|
|
|
|
}
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
/*
|
|
|
|
* Write the original METAFILE into the enhanced metafile.
|
|
|
|
* It is encapsulated in a GDICOMMENT_WINDOWS_METAFILE record.
|
|
|
|
*/
|
|
|
|
mfcomment_size = sizeof (gdi_mf_comment) + cbBuffer;
|
|
|
|
mfcomment = HeapAlloc(GetProcessHeap(), 0, mfcomment_size);
|
|
|
|
if(mfcomment)
|
|
|
|
{
|
|
|
|
mfcomment->ident = GDICOMMENT_IDENTIFIER;
|
|
|
|
mfcomment->iComment = GDICOMMENT_WINDOWS_METAFILE;
|
|
|
|
mfcomment->nVersion = 0x00000300;
|
|
|
|
mfcomment->nChecksum = 0; /* FIXME */
|
|
|
|
mfcomment->fFlags = 0;
|
|
|
|
mfcomment->cbWinMetaFile = cbBuffer;
|
|
|
|
memcpy(&mfcomment[1], lpbBuffer, cbBuffer);
|
|
|
|
GdiComment(hdc, mfcomment_size, (BYTE*) mfcomment);
|
|
|
|
HeapFree(GetProcessHeap(), 0, mfcomment);
|
|
|
|
}
|
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
if(lpmfp->mm != MM_TEXT)
|
|
|
|
SetMapMode(hdc, lpmfp->mm);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
/* set the initial viewport:window ratio as 1:1 */
|
|
|
|
xext = lpmfp->xExt*horzres/(100*horzsize);
|
|
|
|
yext = lpmfp->yExt*vertres/(100*vertsize);
|
|
|
|
SetViewportExtEx(hdc, xext, yext, NULL);
|
|
|
|
SetWindowExtEx(hdc, xext, yext, NULL);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2003-02-15 00:30:27 +01:00
|
|
|
PlayMetaFile(hdc, hmf);
|
1999-12-04 04:56:53 +01:00
|
|
|
|
2002-08-17 03:37:50 +02:00
|
|
|
ret = CloseEnhMetaFile(hdc);
|
2003-02-15 00:30:27 +01:00
|
|
|
end:
|
2002-08-17 03:37:50 +02:00
|
|
|
DeleteMetaFile(hmf);
|
|
|
|
return ret;
|
1999-12-04 04:56:53 +01:00
|
|
|
}
|