Home / api / name / gb.getinterface 
GB.GetInterface
Syntax
int GB.GetInterface ( const char *name , long version , void *iface )

This function gets a component interface. It fills a structure that describes an interface of an already loaded component.

This function aborts the interpreter if the interface cannot be found. Otherwise zero is returned.

Example
#include <gambas.h>
#include <gb.qt.h>

...

QT_INTERFACE QT;

...

int GB_INIT(void)
{
  GB.GetInterface("gb.qt", QT_INTERFACE_VERSION, &QT);
  ...
}