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

Begins the implementation of a method that has no arguments.

Examples

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
};

See also

Methods Implementation