Vcl.OleServer.TServerData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TServerData = record
    ClassID: TGUID;                   // CLSID of CoClass
    IntfIID: TGUID;                   // IID of default interface
    EventIID: TGUID;                  // IID of default source interface
    LicenseKey: Pointer;              // Pointer to license string (not implemented)
    Version: Integer;                 // Version of this structure
    InstanceCount: Integer;           // Instance of the Server running
  end;

C++

struct DECLSPEC_DRECORD TServerData
{
public:
    GUID ClassID;
    GUID IntfIID;
    GUID EventIID;
    void *LicenseKey;
    int Version;
    int InstanceCount;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.OleServer.pas
Vcl.OleServer.hpp
Vcl.OleServer Vcl.OleServer

Description

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!