File
File: ContainerApi.h
Syntax
C++
struct dtsApiContainerItem {
const char* nameInContainer = 0;
__int64 indexInContainer = 0;
__int64 size = 0;
dtsContainerItemDate date;
int bEncrypted = 0;
int ordinalInContainer = 0;
};
Members
|
Members |
Description |
|---|---|
|
const char* nameInContainer = 0; |
Name of the item as stored in the container |
|
__int64 indexInContainer = 0; |
Integer value that can be used to extract an item from the container. The meaning of this value is determined by the file parser, and it may not be sequential. For example, it could be a byte offset in the file that allows the file parser to efficiently locate the item. |
|
__int64 size = 0; |
The expected size of the item after extraction from the container. |
|
dtsContainerItemDate date; |
The modification date of the item as stored in the ocntainer. |
|
int bEncrypted = 0; |
True if this item is encrypted in the container |
|
int ordinalInContainer = 0; |
Sequential ordinal identifying this item in the container, starting with zero for the first item. If -1, this item was retrieved through a method other than getFirst/getNext, and the ordinal position is not known. |
Group
Description
Information about an item in a container as returned by the container API