Go to the source code of this file.
Data Structures | |
struct | lcmaps_argument_s |
structure representing an LCMAPS plugin run argument. More... | |
Typedefs | |
typedef 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 273 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 179 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 230 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 131 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 72 of file lcmaps_arguments.c. |