Discuss this help topic in SecureBlackbox Forum

gss_buffer_desc

Declared in     


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


This topic is under development

Declaration

[C#]
    struct GSSBufferDesc
    {
        int len;
        IntPtr value;
    }

[VB.NET]
    Structure GSSBufferDesc
        len As Integer
        value As IntPtr
    End Structure

[Pascal]
    GSSBufferDesc = record
    length : LongWord;
    value : Pointer;
    end;

[C++]
    typedef struct
    {
        uint32_t length;
        void * value;
    } gss_buffer_desc, * gss_buffer_t

[PHP]
    not available

Description

    ...

Declared in

.NET:
  • Namespace: SBGSSAPI
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBGSSAPI
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbgssapi.h

Discuss this help topic in SecureBlackbox Forum