Go to the source code of this file.
Typedefs | |
typedef int(* | AXIS_DESERIALIZE_FUNCT )(void *, void *) |
typedef void *(* | AXIS_OBJECT_CREATE_FUNCT )(void *, bool bArray, int nSize) |
typedef void(* | AXIS_OBJECT_DELETE_FUNCT )(void *, bool bArray, int nSize) |
typedef int(* | AXIS_SERIALIZE_FUNCT )(void *, void *, bool bArray) |
typedef int(* | AXIS_OBJECT_SIZE_FUNCT )(void) |
This file contains the API functions that are implemented by the WSDL2Ws tool generated code to manipulate C/C++ type for each complex type in a xml schema.
|
Function that deserializes a custom type |
|
Function used to create a custom type. bArray is true if array of objects to be created. Then nSize is the size of that array. |
|
Function used to delete a custom type. bArray is true if void* is a pointer to an array. Then nSize is the size of that array. |
|
Function that is used to get the size of an object of a custom type. |
|
Function that serializes a custom type. bArray indicates that the object in void is an element of an array (note that void* is not itself an array). |