Discuss this help topic in SecureBlackbox Forum

TSBZipAddEntryResult

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    TSBZipAddEntryResult = short;
        const short aerAdded = 0;
        const short aerReplaced = 1;
        const short aerUpdated = 2;
        const short aerSkipped = 3;

[VB.NET]
    TSBZipAddEntryResult As Short
        Const aerAdded As Short = 0
        Const aerReplaced As Short = 1
        Const aerUpdated As Short = 2
        Const aerSkipped As Short = 3

[Pascal]
    TSBZipAddEntryResult = (aerAdded, aerReplaced, aerUpdated, aerSkipped);

[C++]
    typedef uint8_t TSBZipAddEntryResultRaw;
    typedef enum { aerAdded = 0, aerReplaced = 1, aerUpdated = 2, aerSkipped = 3 } TSBZipAddEntryResult;

[PHP]
    class TSBZipAddEntryResult extends TSBBaseEnum {
        const aerAdded = 0;
        const aerReplaced = 1;
        const aerUpdated = 2;
        const aerSkipped = 3;
    }

[Java]
    not available

Description

    This type defines possible results returned by TElZipWriter.Add method.

Declared in

.NET:
  • Namespace:
  • Assembly: SecureBlackbox.Zip
VCL:
  • Unit: SBArcZip
Java:
  • Package: SecureBlackbox.Zip.jar
C++:
  • sbarczip.h

Discuss this help topic in SecureBlackbox Forum