Home > dev > api > name > gb.push 
 en fr de es nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Precedente  Successivo  Modifica  Rinomina  Undo  Search  Amministrazione  
Documentazione  
Attenzione! Questa pagina non รจ tradotta.  Vedi versione in inglese 
GB.Push
void GB.Push ( int nval , ... )

Push values on the interpreter stack.

* nval is the number of values you want to push.

The values are passed as additional arguments this way : the type of the value, followed by the data representing the value, this being repeated for each value.

When pushing a String, you must give a string pointer and a length.

Esempio

GB.Push(4,
  GB_BOOLEAN, 1,
  GB_INTEGER, 1972,
  GB_FLOAT, 3.1416,
  GB_STRING, "Gambas", 6
  );

Vedi anche

api/cat/call