This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | lcmaps_argument_s |
structure representing an LCMAPS plugin run argument. More... | |
Typedefs | |
typedef struct lcmaps_argument_s | lcmaps_argument_t |
Type of LCMAPS plugin run argument (to be passed to the plugin by plugin_run()). | |
Functions | |
int | lcmaps_setArgValue (char *argName, char *argType, void *value, int argcx, lcmaps_argument_t **argvx) |
Set the value of argument with name argName of argType to value. More... | |
void* | lcmaps_getArgValue (char *argName, char *argType, int argcx, lcmaps_argument_t *argvx) |
Get the value of argument with name argName of argType. More... | |
int | lcmaps_findArgName (char *argName, int argcx, lcmaps_argument_t *argvx) |
Get index of argument with name argName. More... | |
int | lcmaps_findArgNameAndType (char *argName, char *argType, int argcx, lcmaps_argument_t *argvx) |
Get index of argument with name argName. More... | |
int | lcmaps_cntArgs (lcmaps_argument_t *argvx) |
Count the number of arguments. More... |
Routines to access the plugin arguments.
The interface is composed of:
Definition in file lcmaps_arguments.h.
|
Count the number of arguments.
Count the number of arguments that are defined in a plug-in Returns this number.
Definition at line 272 of file lcmaps_arguments.c. |
|
Get index of argument with name argName.
Search for argName in the arguments list. Returns the index to lcmaps_argument_t element.
Definition at line 178 of file lcmaps_arguments.c. |
|
Get index of argument with name argName.
Search for argName in the arguments list. Returns the index to lcmaps_argument_t element.
Definition at line 229 of file lcmaps_arguments.c. |
|
Get the value of argument with name argName of argType.
Set the value of argType on the reserved place in values. The place within values is determined by the place where argName is found in the arguments list Returns a void pointer to the value.
Definition at line 130 of file lcmaps_arguments.c. |
|
Set the value of argument with name argName of argType to value.
Set the value of argType on the reserved place in values. The place within values is determined by the place where argName is found in the arguments list
Definition at line 71 of file lcmaps_arguments.c. |