PFF_DESTINATIONFILE

This structure contains information about a destination file. A file filter uses the information to write the converted data to the file.

typedef struct tagPFF_DESTINATIONFILE{
TCHAR szFullpath[_MAX_PATH];
TCHAR szPath[_MAX_PATH];
TCHAR szFilename[_MAX_FNAME];
TCHAR szExtension[_MAX_EXT];
} PFF_DESTINATIONFILE; 

Members

  • szFullpath
    Null-terminated string that contains the default full path of the destination file, for example, "C:\Temp\Myfont.fnt."
  • szPath
    Null-terminated string that contains the path of the directory where the destination file should be created, for example, "C:\Temp."
  • szFilename
    Null-terminated string that contains only the default name of the destination file. For example, if the destination file name is Myfont.fnt, then the value of szFilename is "Myfont."
  • szExtension
    Null-terminated string that contains the file name extension of the destination file, for example, "fnt."

Remarks

The szFullpath and szFilename members are described as i values since the file filter is allowed to modify the name of the destination file. For example, the Font file converter creates "Arial8.fnt" and "Arial10.fnt" from Arial. Ttf when the user selects the 8-point and 10-point font sizes. Note, however, that changing file names and creating multiple destination files only works when importing files from the desktop computer to the target device, and not when exporting files from the target device to the desktop computer.

This structure is supported by Windows CE versions 1.0 and 1.01. For versions 2.0 and later, see CFF_DESTINATIONFILE.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 1.0 and 1.01 Replfilt.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

CFF_DESTINATIONFILE

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.