License Information (a_v4_extfn_license_info)

If you are a Sybase design partner, use the a_v4_extfn_license_info structure to define library-level license validations for your UDFs, including your company name, library version information, and a Sybase-supplied license key.

Implementation

typedef struct an_extfn_license_info {
    short 	version;
} an_extfn_license_info;

typedef struct a_v4_extfn_license_info {
    an_extfn_license_info version;

    const char		name[255];
    const char		info[255];
    void *		key;
} a_v4_extfn_license_info;

Data Member Summary

Data Member Description
version Internal use only. Must be set to 1.
name Value the UDF sets as your company name.
info Value the UDF sets for additional library information such as library version and build numbers.
key (Sybase partners only) A Sybase-supplied license key. The key is a 26-character array.