Share via


CFF_SOURCEFILE

The CFF_SOURCEFILE structure contains information about a source file. A file filter uses the information to locate the source file and read its contents.

Syntax

typedef struct tagCFF_SOURCEFILE {
  TCHAR szFullpath[_MAX_PATH];
  TCHAR szPath[_MAX_PATH];
  TCHAR szFilename[_MAX_FNAME];
  TCHAR szExtension[_MAX_EXT];
  DWORD cbSize;
  FILETIME ftCreated;
  FILETIME ftModified;
} CFF_SOURCEFILE; 

Members

  • szFullpath
    A null-terminated string that specifies the full path of the source file.
  • szPath
    A null-terminated string that specifies the path of the directory that contains the source file.
  • szFilename
    A null-terminated string that specifies the name of the source file.
  • szExtension
    A null-terminated string that specifies the file name extension of the source file.
  • cbSize
    Specifies the size of the source file.
  • ftCreated
    Specifies a FILETIME structure that indicates the time when the source file was created.
  • ftModified
    Specifies a FILETIME structure that indicates the time when the file was last modified.

Requirements

Smartphone: Windows Mobile 2002 and later
OS Versions: Windows CE 3.0 and later
Header: replfilt.h

See Also

ActiveSync API Structures

FILETIME

Last updated on Friday, April 22, 2005

© 2005 Microsoft Corporation. All rights reserved.

Send feedback on this topic to the authors.