SecureBlackbox Lite 2020 C++ Edition

Questions / Feedback?

FileDataSource Property

The type of the data source for this entry.

Syntax

ANSI (Cross Platform)
int GetFileDataSource(int iFileIndex);
int SetFileDataSource(int iFileIndex, int iFileDataSource); Unicode (Windows) INT GetFileDataSource(INT iFileIndex);
INT SetFileDataSource(INT iFileIndex, INT iFileDataSource);

Possible Values

FDS_FILE(0), 
FDS_STREAM(1),
FDS_BUFFER(2)
- (int)fileDataSource:(int)fileIndex;
- (void)setFileDataSource:(int)fileIndex:(int)newFileDataSource;

Possible Values

FDS_FILE(0), 
FDS_STREAM(1),
FDS_BUFFER(2)
#define PID_ARCHIVEREADER_FILEDATASOURCE 10

SECUREBLACKBOXLITE_EXTERNAL void* SECUREBLACKBOXLITE_CALL SecureBlackboxLite_ArchiveReader_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
SECUREBLACKBOXLITE_EXTERNAL int SECUREBLACKBOXLITE_CALL SecureBlackboxLite_ArchiveReader_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);
SECUREBLACKBOXLITE_EXTERNAL int SECUREBLACKBOXLITE_CALL SecureBlackboxLite_ArchiveReader_CheckIndex(void *lpObj, int propid, int arridx);

Default Value

0

Remarks

The type of the data source for this entry.

Use this property to control the data source for this entry.

fdsFile (0)The data for this entry should be taken from the file provided via FileLocalPath.
fdsStream (1)The data is going to be provided on-the-fly via the FileStream property.
fdsBuffer (2)The data is going to be provided on-the-fly via the FileData property.

The FileIndex parameter specifies the index of the item in the array. The size of the array is controlled by the FileCount property.

This property is not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox Lite 2020 C++ Edition - Version 20.0 [Build 8166]