typedef struct _DOCWRTEMFOPTIONS
{
DOCWRTOPTIONS Options;
L_VOID * pReserved;
} DOCWRTEMFOPTIONS, *pDOCWRTEMFOPTIONS;
The DOCWRTEMFOPTIONS structure provides information about an EMF file.
Member |
Description |
Options |
Options structure containing options for an EMF file. |
pReserved |
Reserved for future use. Pass 0. |
Comments
pDOCWRTEMFOPTIONS is a pointer to DOCWRTEMFOPTIONS structure. Generally, where a function parameter type is pDOCWRTEMFOPTIONS, you can declare a DOCWRTEMFOPTIONS variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pDOCWRTEMFOPTIONS variable is necessary only if your program requires a pointer.
The uStructSize at Options structure should be set to the size of DOCWRTEMFOPTIONS, Use the sizeof() macro to calculate this value.
This structure is used with the L_DocWriterInit function.