typedef struct _tagTextFormatInfo2
{
L_UINT uStructSize;
L_TCHAR * pszName;
L_TCHAR * pszDLLName;
L_TCHAR * pszExtName;
} TEXTFORMATINFO2, * pTEXTFORMATINFO2;
The TEXTFORMATINFO2 structure contains detailed information about a specific format.
Member |
Description |
uStructSize |
Structure size. It should be equal to sizeof(TEXTFORMATINFO2). |
pszName |
Character string that contains the name of the output text format. |
pszDLLName |
Character string that contains the name of the output converter DLL file containing the Name converter. |
pszExtName |
Character string that contains the default extension for the final output document. |
pTEXTFORMATINFO2 is a pointer to a TEXTFORMATINFO2 structure. If the function parameter type is pTEXTFORMATINFO2, declare a TEXTFORMATINFO2 variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pTEXTFORMATINFO2 variable is necessary only if the program requires a pointer.
This structure is used with the L_Doc2GetTextFormatInfo function.