|
cmpi
|
#include <cmpi/cmpift.h>
Public Attributes | |
| int | ftVersion |
| CMPIStatus(* | release )(CMPIArgs *as) |
| CMPIArgs *(* | clone )(const CMPIArgs *as, CMPIStatus *rc) |
| CMPIStatus(* | addArg )(const CMPIArgs *as, const char *name, const CMPIValue *value, const CMPIType type) |
| CMPIData(* | getArg )(const CMPIArgs *as, const char *name, CMPIStatus *rc) |
| CMPIData(* | getArgAt )(const CMPIArgs *as, CMPICount index, CMPIString **name, CMPIStatus *rc) |
| CMPICount(* | getArgCount )(const CMPIArgs *as, CMPIStatus *rc) |
This structure is a table of pointers providing access to Args support sevices.
| CMPIStatus(* _CMPIArgsFT::addArg) (const CMPIArgs *as, const char *name, const CMPIValue *value, const CMPIType type) |
Adds/replaces a named argument.
| as | Args this pointer. |
| name | Argument name. |
| value | Address of value structure. |
| type | Value type. |
Referenced by CmpiArgs::setArg().
| CMPIArgs *(* _CMPIArgsFT::clone) (const CMPIArgs *as, CMPIStatus *rc) |
Create an independent copy of this Args object. The resulting object must be released explicitly.
| as | Args this pointer. |
| rc | Output: Service return status (suppressed when NULL). |
| int _CMPIArgsFT::ftVersion |
Function table version
| CMPIData(* _CMPIArgsFT::getArg) (const CMPIArgs *as, const char *name, CMPIStatus *rc) |
Gets a named argument value.
| as | Args this pointer. |
| name | Argument name. |
| rc | Output: Service return status (suppressed when NULL). |
Referenced by CmpiArgs::getArg().
| CMPIData(* _CMPIArgsFT::getArgAt) (const CMPIArgs *as, CMPICount index, CMPIString **name, CMPIStatus *rc) |
Gets a Argument value defined by its index.
| as | Args this pointer. |
| index | Position in the internal Data array. |
| name | Output: Returned argument name (suppressed when NULL). |
| rc | Output: Service return status (suppressed when NULL). |
Referenced by CmpiArgs::getArg().
| CMPICount(* _CMPIArgsFT::getArgCount) (const CMPIArgs *as, CMPIStatus *rc) |
Gets the number of arguments contained in this Args.
| as | Args this pointer. |
| rc | Output: Service return status (suppressed when NULL). |
Referenced by CmpiArgs::getArgCount().
| CMPIStatus(* _CMPIArgsFT::release) (CMPIArgs *as) |
The Args object will not be used any further and may be freed by CMPI run time system.
| as | Args this pointer. |