Knowledge Center         Contents    Previous  Next    
Platform Computing Corp.

glb_groupinfolist()

Returns an array of License Scheduler project group information.

DESCRIPTION

glb_groupinfolist() returns an array of glbGroupInfoList structures, which contains the License Scheduler project hierarchical group information.

SYNOPSIS

#include <glb/glb.h> 
struct glbGroupInfoList *glb_groupinfolist(int *num)

struct glbGroupInfoList {
    int num;
    char *featurename;
    char *sdlist;
    int totalavail;
    struct glbGroupInfo *groups;
};

struct glbGroupInfo {
    char *name;
    char *path;
    struct groupWeight *w;
    int numChildren;
}; 

PARAMETERS

*num:

The number of desired glbGroupInfoList structures returned in the array.

RETURN VALUES

*glbGroupInfoList:

A list of License Scheduler project group information.

ERRORS

On failure, glberrno is set to indicate the error.


Platform Computing Inc.
www.platform.com
Knowledge Center         Contents    Previous  Next