Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBPGPSFXCommandLineSwitches = int;
const int clsHelp = 1;
const int clsSilent = 2;
const int clsOverwrite = 4;
const int clsTarget = 8;
const int clsPublic = 16;
const int clsSecret = 32;
const int clsKeyPass = 64;
const int clsPass = 128;
const int clsExtract = 256;
const int clsTempFile = 512;
[VB.NET]
TSBPGPSFXCommandLineSwitches As Integer
Const clsHelp As Integer = 1
Const clsSilent As Integer = 2
Const clsOverwrite As Integer = 4
Const clsTarget As Integer = 8
Const clsPublic As Integer = 16
Const clsSecret As Integer = 32
Const clsKeyPass As Integer = 64
Const clsPass As Integer = 128
Const clsExtract As Integer = 256
Const clsTempFile As Integer = 512
[Pascal]
under development
[C++]
typedef uint8_t TSBPGPSFXCommandLineSwitchRaw;
typedef enum { clsHelp = 0, clsSilent = 1, clsOverwrite = 2, clsTarget = 3, clsPublic = 4, clsSecret = 5, clsKeyPass = 6, clsPass = 7, clsExtract = 8, clsTempFile = 9 } TSBPGPSFXCommandLineSwitch;
typedef uint32_t TSBPGPSFXCommandLineSwitchesRaw;
typedef enum { f_clsHelp = 1, f_clsSilent = 2, f_clsOverwrite = 4, f_clsTarget = 8, f_clsPublic = 16, f_clsSecret = 32, f_clsKeyPass = 64, f_clsPass = 128, f_clsExtract = 256, f_clsTempFile = 512 } TSBPGPSFXCommandLineSwitches;
[PHP]
class TSBPGPSFXCommandLineSwitches extends TSBBaseEnum {
const clsHelp = 1;
const clsSilent = 2;
const clsOverwrite = 4;
const clsTarget = 8;
const clsPublic = 16;
const clsSecret = 32;
const clsKeyPass = 64;
const clsPass = 128;
const clsExtract = 256;
const clsTempFile = 512;
}
Possible values
Declared in
.NET:
- Namespace: SBPGPSFX
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum