Home > api > name > gb.getinterface 
 fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
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.

Examples

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

...

QT_INTERFACE QT;

...

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