AjPTable ajCallTableNew ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPTable | RETURN | Hash table with string keys |
From EMBOSS 6.2.0
void ajCallTableRegister ( AjPTable table, const char* name, void* func );
Type | Name | Read/Write | Description |
---|---|---|---|
AjPTable | table | Output | name which is used later. |
const char* | name | Input | name which is used later. |
void* | func | Function | Access structure for function to be invoked by name |
void | RETURN |
From EMBOSS 6.2.0
void ajCallRegister ( const char* name, CallFunc func );
Type | Name | Read/Write | Description |
---|---|---|---|
const char* | name | Input | name which is used later.. |
CallFunc | func | Function | function to be called on name being called. |
void | RETURN |
From EMBOSS 4.0.0
void ajCallRegisterOld ( const char* name, CallFunc func );
Type | Name | Read/Write | Description |
---|---|---|---|
const char* | name | Input | name which is used later. |
CallFunc | func | Function | function to be called on name being called. |
void | RETURN |
From EMBOSS 6.2.0
void* ajCall ( const char* name, ... );
Type | Name | Read/Write | Description |
---|---|---|---|
const char* | name | Input | name of the function to call. |
... | vararg | Vararg | Optional arguments |
void* | RETURN | NULL if function call not found. |
From EMBOSS 4.0.0
void* ajCallTableGetC ( const AjPTable table, const char* name );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPTable | table | Input | Function hash table |
const char* | name | Input | name of the function |
void* | RETURN | Access structure defining the named function. NULL if not found |
From EMBOSS 6.2.0
void* ajCallTableGetS ( const AjPTable table, const AjPStr namestr );
Type | Name | Read/Write | Description |
---|---|---|---|
const AjPTable | table | Input | Function hash table |
const AjPStr | namestr | Input | name of the function |
void* | RETURN | Access structure defining the named function. NULL if not found |
From EMBOSS 6.2.0
void ajCallExit ( void );
Type | Name | Read/Write | Description |
---|---|---|---|
void | RETURN |
From EMBOSS 4.0.0