#include <stdio.h>
#include <string.h>
#include <wine/windef.h>
#include <wine/winbase.h>
#include <wine/wingdi.h>
#include <wine/winuser.h>
#include <wine/winerror.h>
Go to the source code of this file.
Functions | |
HDC | CreateEnhMetaFileWithFILEA (HDC context, FILE *fp, const RECT *size, LPCSTR description) |
HDC | CreateEnhMetaFileWithFILEW (HDC context, FILE *fp, const RECT *size, LPCWSTR description) |
HENHMETAFILE | CloseEnhMetaFileWithFILE (HDC context) |
void | EditEnhMetaFile (HENHMETAFILE metafile) |
|
Close a metafile which was created with an already open FILE pointer.
|
|
Many graphics programs want to open and close output files themselves. At least, gnuplot and Grace do. So, supply the FILE pointer when creating a metafile and let the plotting program's driver handle it.
|
|
Many graphics programs want to open and close output files themselves. At least, gnuplot and Grace do. So, supply the FILE pointer when creating a metafile and let the plotting program's driver handle it. This differs from CreateEnhMetaFileWithFILEA only in that the description string uses wide characters.
|
|
This is not a ECMA-234 standard function. Edit (print) the contents of the metafile to stdout. Also, this function does nothing if editing wasn't enabled at ./configure time.
|