IPCF_FILE_BASIC_INFORMATION structure

Describes the basic information about a protected file. For more information on protected file, see Supported File Formats

Syntax

typedef struct _IPCF_FILE_BASC_INFORMATION {
  DWORD               cbSize;
  LPCWSTR             wszDecryptedFileName;
  DWORD64             qwDecryptedFileSize;
  FILETIME            ftDateModified;
  IPC_NAME_VALUE_LIST pAppSpecificProperties;
} IPCF_FILE_BASC_INFORMATION, *PIPCF_FILE_BASC_INFORMATION;

Members

cbSize

This is the size of this structure and needs to be initialized to

sizeof(IPCF_FILE_BASIC_INFORMATION)

wszDecryptedFileName

Name of the decrypted file. Can be optionally stored in the metadata section.

qwDecryptedFileSize

Size of the decrypted file, in bytes.

ftDateModified

The date modified on the file.

pAppSpecificProperties

Custom application specific properties as name-value pairs.

Requirements

Minimum supported client
Windows Vista with SP2
Minimum supported server
Windows Server 2008
Header
Ipcfile.h (include Msipc.h)

See also

Supported File Formats

Structures