This structure contains information about a source file. A file filter uses the information to locate the source file and read its contents.
At a Glance
Header file: | Replifilt.h |
Windows CE versions: | 2.0 and later |
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
Null-terminated string that contains the fully qualified path of the source file, for example, “C:\Temp\Myfont.fon”.
szPath
Null-terminated string that contains the path of the directory that contains the source file, for example, “C:\Temp”.
szFilename
Null-terminated string that contains only the name of the source file. For example, if the source file name is Myfont.fon, then the value of szFilename is ”Myfont”.
szExtension
Null-terminated string that contains the file name extension of the source file, for example, “fon”.
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.