Home > dev > api > name > begin_method_void 
 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 
BEGIN_METHOD_VOID
#define BEGIN_METHOD_VOID ( name ) ...

Begins the implementation of a metodo that has no arguments.

Esempio

BEGIN_METHOD_VOID(CARRAY_pop)
...
END_METHOD

...

PUBLIC GB_DESC NATIVE_StringArray[] =
{
  GB_DECLARE("String[]", sizeof(CARRAY)), GB_INHERITS(".Array"),
  ...
  GB_METHOD("Pop", "s", CARRAY_pop, NULL),
  ...
  GB_END_DECLARE
};

Vedi anche

Methods Implementation