XML: remove all useless instance_init functions

* Use Coccinelle semantic patch tool (http://coccinelle.lip6.fr/) to
   remove useless instance_init functions, the first patch applied was:
@@
type T,V;
identifier I, J;
parameter list P;
expression E1;
@@

V instance_init(T node)
{
<...
(
-  E1 = 0;
|
-  E1 = NULL;
|
-  E1 = FALSE;
)
...>
}
   It removes useless initialization to 0 (GObject already zeroes
   allocated objects).
   The second one is:
@ rule1 @
type T;
identifier node,fn;
@@

- static void fn(T *node) { }

@ rule2 extends rule1 @
typedef GType, GInstanceInitFunc;
identifier type_constructor;
@@
GType type_constructor()
{
<...
- (GInstanceInitFunc)fn
+ NULL
...>
}
   It removes empty instance_init functions.
This commit is contained in:
Benjamin Dauvergne 2009-08-26 15:14:48 +00:00
parent 291e0c05fa
commit b63bc73b93
282 changed files with 225 additions and 1934 deletions

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoAuthenticateRequester *node)
{
node->descriptionIDRefs = NULL;
}
static void
class_init(LassoDiscoAuthenticateRequesterClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_authenticate_requester_get_type()
NULL,
sizeof(LassoDiscoAuthenticateRequester),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoAuthenticateSessionContext *node)
{
node->descriptionIDRefs = NULL;
}
static void
class_init(LassoDiscoAuthenticateSessionContextClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_authenticate_session_context_get_type()
NULL,
sizeof(LassoDiscoAuthenticateSessionContext),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoAuthorizeRequester *node)
{
node->descriptionIDRefs = NULL;
}
static void
class_init(LassoDiscoAuthorizeRequesterClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_authorize_requester_get_type()
NULL,
sizeof(LassoDiscoAuthorizeRequester),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -57,12 +57,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoCredentials *node)
{
node->any = NULL;
}
static void
class_init(LassoDiscoCredentialsClass *klass)
{
@ -89,7 +83,7 @@ lasso_disco_credentials_get_type()
NULL,
sizeof(LassoDiscoCredentials),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -85,21 +85,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoDescription *node)
{
node->SecurityMechID = NULL;
node->CredentialRef = NULL;
node->WsdlURI= NULL;
node->ServiceNameRef = NULL;
node->Endpoint = NULL;
node->SoapAction = NULL;
node->id = NULL;
}
static void
class_init(LassoDiscoDescriptionClass *klass)
{
@ -126,7 +111,7 @@ lasso_disco_description_get_type()
NULL,
sizeof(LassoDiscoDescription),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoEncryptResourceID *node)
{
node->descriptionIDRefs = NULL;
}
static void
class_init(LassoDiscoEncryptResourceIDClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_encrypt_resource_id_get_type()
NULL,
sizeof(LassoDiscoEncryptResourceID),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -48,13 +48,10 @@
/*****************************************************************************/
static struct XmlSnippet schema_snippets[] = {
#if 0
{ "EncryptedData", SNIPPET_NODE,
{ "EncryptedData", SNIPPET_XMLNODE,
G_STRUCT_OFFSET(LassoDiscoEncryptedResourceID, EncryptedData), NULL, NULL, NULL},
{ "EncryptedKey", SNIPPET_NODE,
{ "EncryptedKey", SNIPPET_LIST_XMLNODES,
G_STRUCT_OFFSET(LassoDiscoEncryptedResourceID, EncryptedKey), NULL, NULL, NULL},
#endif
{ "", SNIPPET_LIST_XMLNODES, G_STRUCT_OFFSET(LassoDiscoEncryptedResourceID, any), NULL, NULL, NULL},
{NULL, 0, 0, NULL, NULL, NULL}
};
@ -62,16 +59,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoEncryptedResourceID *node)
{
node->any = NULL;
#if 0
node->EncryptedData = NULL;
node->EncryptedKey = NULL;
#endif
}
static void
class_init(LassoDiscoEncryptedResourceIDClass *klass)
{
@ -98,7 +85,7 @@ lasso_disco_encrypted_resource_id_get_type()
NULL,
sizeof(LassoDiscoEncryptedResourceID),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -51,11 +51,8 @@ typedef struct _LassoDiscoEncryptedResourceIDClass LassoDiscoEncryptedResourceID
struct _LassoDiscoEncryptedResourceID {
LassoNode parent;
#if 0 /* missing from lasso */
LassoXencEncryptedData *EncryptedData;
LassoXencEncryptedKey *EncryptedKey;
#endif
GList *any; /* of xmlNode */
xmlNode *EncryptedData;
GList *EncryptedKey;
};
struct _LassoDiscoEncryptedResourceIDClass {

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoGenerateBearerToken *node)
{
node->descriptionIDRefs = NULL;
}
static void
class_init(LassoDiscoGenerateBearerTokenClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_generate_bearer_token_get_type()
NULL,
sizeof(LassoDiscoGenerateBearerToken),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -58,13 +58,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoInsertEntry *node)
{
node->ResourceOffering = NULL;
node->any = NULL;
}
static void
class_init(LassoDiscoInsertEntryClass *klass)
{
@ -91,7 +84,7 @@ lasso_disco_insert_entry_get_type()
NULL,
sizeof(LassoDiscoInsertEntry),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -72,16 +72,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoModify *node)
{
node->ResourceID = NULL;
node->EncryptedResourceID = NULL;
node->InsertEntry = NULL;
node->RemoveEntry = NULL;
node->id = NULL;
}
static void
class_init(LassoDiscoModifyClass *klass)
{
@ -108,7 +98,7 @@ lasso_disco_modify_get_type()
NULL,
sizeof(LassoDiscoModify),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -103,14 +103,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoModifyResponse *node)
{
node->Status = NULL;
node->id = NULL;
node->newEntryIDs = NULL;
}
static void
class_init(LassoDiscoModifyResponseClass *klass)
{
@ -138,7 +130,7 @@ lasso_disco_modify_response_get_type()
NULL,
sizeof(LassoDiscoModifyResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoOptions *node)
{
node->Option = NULL;
}
static void
class_init(LassoDiscoOptionsClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_options_get_type()
NULL,
sizeof(LassoDiscoOptions),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -78,15 +78,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoQuery *node)
{
node->ResourceID = NULL;
node->EncryptedResourceID = NULL;
node->RequestedServiceType = NULL;
node->id = NULL;
}
static void
class_init(LassoDiscoQueryClass *klass)
{
@ -113,7 +104,7 @@ lasso_disco_query_get_type()
NULL,
sizeof(LassoDiscoQuery),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -99,16 +99,6 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoQueryResponse *node)
{
node->Status = NULL;
node->ResourceOffering = NULL;
node->Credentials = NULL;
node->id = NULL;
}
static void
class_init(LassoDiscoQueryResponseClass *class)
{
@ -137,7 +127,7 @@ lasso_disco_query_response_get_type()
NULL,
sizeof(LassoDiscoQueryResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -58,11 +58,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoRemoveEntry *node)
{
node->entryID = NULL;
}
static void
class_init(LassoDiscoRemoveEntryClass *klass)
@ -90,7 +85,7 @@ lasso_disco_remove_entry_get_type()
NULL,
sizeof(LassoDiscoRemoveEntry),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -62,13 +62,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoRequestedServiceType *node)
{
node->ServiceType = NULL;
node->Options = NULL;
}
static void
class_init(LassoDiscoRequestedServiceTypeClass *klass)
{
@ -95,7 +88,7 @@ lasso_disco_requested_service_type_get_type()
NULL,
sizeof(LassoDiscoRequestedServiceType),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -58,13 +58,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoResourceID *node)
{
node->id = NULL;
node->content = NULL;
}
static void
class_init(LassoDiscoResourceIDClass *klass)
{
@ -91,7 +84,7 @@ lasso_disco_resource_id_get_type()
NULL,
sizeof(LassoDiscoResourceID),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -77,17 +77,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoResourceOffering *node)
{
node->ResourceID = NULL;
node->EncryptedResourceID = NULL;
node->ServiceInstance = NULL;
node->Options = NULL;
node->Abstract = NULL;
node->entryID = NULL;
}
static void
class_init(LassoDiscoResourceOfferingClass *klass)
{
@ -114,7 +103,7 @@ lasso_disco_resource_offering_get_type()
NULL,
sizeof(LassoDiscoResourceOffering),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,12 +55,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoSendSingleLogout *node)
{
node->descriptionIDRefs = NULL;
}
static void
class_init(LassoDiscoSendSingleLogoutClass *klass)
{
@ -87,7 +81,7 @@ lasso_disco_send_single_logout_get_type()
NULL,
sizeof(LassoDiscoSendSingleLogout),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -63,14 +63,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDiscoServiceInstance *node)
{
node->ServiceType = NULL;
node->ProviderID = NULL;
node->Description = NULL;
}
static void
class_init(LassoDiscoServiceInstanceClass *klass)
{
@ -97,7 +89,7 @@ lasso_disco_service_instance_get_type()
NULL,
sizeof(LassoDiscoServiceInstance),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -42,12 +42,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDsKeyInfo *node)
{
node->KeyValue = NULL;
}
static void
class_init(LassoDsKeyInfoClass *klass)
{
@ -74,7 +68,7 @@ lasso_ds_key_info_get_type()
NULL,
sizeof(LassoDsKeyInfo),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -42,11 +42,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDsKeyValue *node)
{
node->RSAKeyValue = NULL;
}
static void
class_init(LassoDsKeyValueClass *klass)
@ -74,7 +69,7 @@ lasso_ds_key_value_get_type()
NULL,
sizeof(LassoDsKeyValue),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -43,12 +43,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDsRsaKeyValue *node)
{
node->Modulus = NULL;
node->Exponent = NULL;
}
static void
class_init(LassoDsRsaKeyValueClass *klass)
@ -76,7 +70,7 @@ lasso_ds_rsa_key_value_get_type()
NULL,
sizeof(LassoDsRsaKeyValue),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -71,13 +71,6 @@ static struct XmlSnippet schema_snippets[] = {
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstData *node)
{
node->any = NULL;
node->id = NULL;
node->itemIDRef = NULL;
}
static void
class_init(LassoDstDataClass *klass)
@ -105,7 +98,7 @@ lasso_dst_data_get_type()
NULL,
sizeof(LassoDstData),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstModification *node)
{
node->Select = NULL;
node->NewData = NULL;
node->id = NULL;
node->notChangedSince = NULL;
node->overrideAllowed = FALSE;
}
static void
class_init(LassoDstModificationClass *klass)
@ -111,7 +102,7 @@ lasso_dst_modification_get_type()
NULL,
sizeof(LassoDstModification),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -133,12 +133,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstModify *node)
{
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoDstModifyClass *klass)
@ -168,7 +162,7 @@ lasso_dst_modify_get_type()
NULL,
sizeof(LassoDstModify),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -111,12 +111,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstModifyResponse *node)
{
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoDstModifyResponseClass *klass)
@ -146,7 +140,7 @@ lasso_dst_modify_response_get_type()
NULL,
sizeof(LassoDstModifyResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -58,11 +58,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstNewData *node)
{
node->any = NULL;
}
static void
class_init(LassoDstNewDataClass *klass)
@ -90,7 +85,7 @@ lasso_dst_new_data_get_type()
NULL,
sizeof(LassoDstNewData),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -124,17 +124,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstQuery *node)
{
node->ResourceID = NULL;
node->EncryptedResourceID = NULL;
node->QueryItem = NULL;
node->id = NULL;
node->itemID = NULL;
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoDstQueryClass *klass)
@ -164,7 +153,7 @@ lasso_dst_query_get_type()
NULL,
sizeof(LassoDstQuery),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -79,16 +79,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstQueryItem *node)
{
node->Select = NULL;
node->id = NULL;
node->includeCommonAttributes = FALSE;
node->itemID = NULL;
node->changedSince = NULL;
}
static void
class_init(LassoDstQueryItemClass *klass)
@ -116,7 +106,7 @@ lasso_dst_query_item_get_type()
NULL,
sizeof(LassoDstQueryItem),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -126,20 +126,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoDstQueryResponse *node)
{
node->Status = NULL;
node->Data = NULL;
node->Extension = NULL;
node->id = NULL;
node->itemIDRef = NULL;
node->timeStamp = NULL;
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoDstQueryResponseClass *klass)
@ -169,7 +155,7 @@ lasso_dst_query_response_get_type()
NULL,
sizeof(LassoDstQueryResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,11 +55,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoAbstract *node)
{
node->content = NULL;
}
static void
class_init(LassoIdWsf2DiscoAbstractClass *klass)
@ -88,7 +83,7 @@ lasso_idwsf2_disco_abstract_get_type()
NULL,
sizeof(LassoIdWsf2DiscoAbstract),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -70,14 +70,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoEndpointContext *node)
{
node->Address = NULL;
node->Framework = NULL;
node->SecurityMechID = NULL;
node->Action = NULL;
}
static void
class_init(LassoIdWsf2DiscoEndpointContextClass *klass)
@ -106,7 +98,7 @@ lasso_idwsf2_disco_endpoint_context_get_type()
NULL,
sizeof(LassoIdWsf2DiscoEndpointContext),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -61,11 +61,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoKeys *node)
{
node->KeyDescriptor = NULL;
}
static void
class_init(LassoIdWsf2DiscoKeysClass *klass)
@ -94,7 +89,7 @@ lasso_idwsf2_disco_keys_get_type()
NULL,
sizeof(LassoIdWsf2DiscoKeys),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -59,11 +59,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoOptions *node)
{
node->Option = NULL;
}
static void
class_init(LassoIdWsf2DiscoOptionsClass *klass)
@ -92,7 +87,7 @@ lasso_idwsf2_disco_options_get_type()
NULL,
sizeof(LassoIdWsf2DiscoOptions),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,11 +55,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoProviderID *node)
{
node->content = NULL;
}
static void
class_init(LassoIdWsf2DiscoProviderIDClass *klass)
@ -88,7 +83,7 @@ lasso_idwsf2_disco_provider_id_get_type()
NULL,
sizeof(LassoIdWsf2DiscoProviderID),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -70,7 +70,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoQuery *node)
{
node->RequestedService = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -73,8 +73,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoQueryResponse *node)
{
node->Status = NULL;
node->EndpointReference = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -96,19 +96,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoRequestedService *node)
{
node->ServiceType = NULL;
node->ProviderID = NULL;
node->Options = NULL;
node->SecurityMechID = NULL;
node->Framework = NULL;
node->Action = NULL;
node->any = NULL;
node->reqID = NULL;
node->resultsType = NULL;
}
static void
class_init(LassoIdWsf2DiscoRequestedServiceClass *klass)
@ -137,7 +124,7 @@ lasso_idwsf2_disco_requested_service_get_type()
NULL,
sizeof(LassoIdWsf2DiscoRequestedService),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -69,12 +69,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoSecurityContext *node)
{
node->SecurityMechID = NULL;
node->Token = NULL;
}
static void
class_init(LassoIdWsf2DiscoSecurityContextClass *klass)
@ -103,7 +97,7 @@ lasso_idwsf2_disco_security_context_get_type()
NULL,
sizeof(LassoIdWsf2DiscoSecurityContext),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -68,13 +68,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoServiceContext *node)
{
node->ServiceType = NULL;
node->Options = NULL;
node->EndpointContext = NULL;
}
static void
class_init(LassoIdWsf2DiscoServiceContextClass *klass)
@ -103,7 +96,7 @@ lasso_idwsf2_disco_service_context_get_type()
NULL,
sizeof(LassoIdWsf2DiscoServiceContext),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -55,11 +55,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoServiceType *node)
{
node->content = NULL;
}
static void
class_init(LassoIdWsf2DiscoServiceTypeClass *klass)
@ -88,7 +83,7 @@ lasso_idwsf2_disco_service_type_get_type()
NULL,
sizeof(LassoIdWsf2DiscoServiceType),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDAssociationAdd *node)
{
node->SvcMDID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDAssociationAddResponse *node)
{
node->Status = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDAssociationDelete *node)
{
node->SvcMDID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDAssociationDeleteResponse *node)
{
node->Status = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDAssociationQuery *node)
{
node->SvcMDID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDAssociationQueryResponse *node)
{
node->Status = NULL;
node->SvcMDID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDDelete *node)
{
node->SvcMDID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDDeleteResponse *node)
{
node->Status = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -67,7 +67,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDQuery *node)
{
node->SvcMDID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -70,8 +70,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDQueryResponse *node)
{
node->Status = NULL;
node->SvcMD = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -67,7 +67,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDRegister *node)
{
node->SvcMD = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -75,9 +75,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDRegisterResponse *node)
{
node->Status = NULL;
node->SvcMDID = NULL;
node->Keys = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDReplace *node)
{
node->SvcMD = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -66,7 +66,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DiscoSvcMDReplaceResponse *node)
{
node->Status = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -71,14 +71,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DiscoSvcMetadata *node)
{
node->Abstract = NULL;
node->ProviderID = NULL;
node->ServiceContext = NULL;
node->svcMDID = NULL;
}
static void
class_init(LassoIdWsf2DiscoSvcMetadataClass *klass)
@ -107,7 +99,7 @@ lasso_idwsf2_disco_svc_metadata_get_type()
NULL,
sizeof(LassoIdWsf2DiscoSvcMetadata),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -61,11 +61,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstDataResponseBase *node)
{
node->timeStamp = NULL;
}
static void
class_init(LassoIdWsf2DstDataResponseBaseClass *klass)
@ -94,7 +89,7 @@ lasso_idwsf2_dst_data_response_base_get_type()
NULL,
sizeof(LassoIdWsf2DstDataResponseBase),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -68,15 +68,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstDeleteItemBase *node)
{
node->notChangedSince = NULL;
node->id = NULL;
node->itemID = NULL;
node->objectType = NULL;
node->predefined = NULL;
}
static void
class_init(LassoIdWsf2DstDeleteItemBaseClass *klass)
@ -105,7 +96,7 @@ lasso_idwsf2_dst_delete_item_base_get_type()
NULL,
sizeof(LassoIdWsf2DstDeleteItemBase),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DstRequest *node)
{
node->Extension = NULL;
node->itemID = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -80,18 +80,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstResultQueryBase *node)
{
node->ChangeFormat = NULL;
node->itemIDRef = NULL;
node->contingency = FALSE;
node->includeCommonAttributes = FALSE;
node->changedSince = NULL;
node->itemID = NULL;
node->objectType = NULL;
node->predefined = NULL;
}
static void
class_init(LassoIdWsf2DstResultQueryBaseClass *klass)
@ -120,7 +108,7 @@ lasso_idwsf2_dst_result_query_base_get_type()
NULL,
sizeof(LassoIdWsf2DstResultQueryBase),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -65,14 +65,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstTestItemBase *node)
{
node->id = NULL;
node->itemID = NULL;
node->objectType = NULL;
node->predefined = NULL;
}
static void
class_init(LassoIdWsf2DstTestItemBaseClass *klass)
@ -101,7 +93,7 @@ lasso_idwsf2_dst_test_item_base_get_type()
NULL,
sizeof(LassoIdWsf2DstTestItemBase),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -59,11 +59,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefAppData *node)
{
node->any = NULL;
}
static void
class_init(LassoIdWsf2DstRefAppDataClass *klass)
@ -92,7 +87,7 @@ lasso_idwsf2_dstref_app_data_get_type()
NULL,
sizeof(LassoIdWsf2DstRefAppData),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -68,12 +68,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefCreate *node)
{
node->CreateItem = NULL;
node->ResultQuery = NULL;
}
static void
class_init(LassoIdWsf2DstRefCreateClass *klass)
@ -102,7 +96,7 @@ lasso_idwsf2_dstref_create_get_type()
NULL,
sizeof(LassoIdWsf2DstRefCreate),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -67,14 +67,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefCreateItem *node)
{
node->NewData = NULL;
node->objectType = NULL;
node->id = NULL;
node->itemID = NULL;
}
static void
class_init(LassoIdWsf2DstRefCreateItemClass *klass)
@ -103,7 +95,7 @@ lasso_idwsf2_dstref_create_item_get_type()
NULL,
sizeof(LassoIdWsf2DstRefCreateItem),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -68,9 +68,7 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2DstRefData *node)
{
node->remaining = 0;
node->nextOffset = -1;
node->setID = NULL;
}
static void

View File

@ -64,11 +64,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefDataResponse *node)
{
node->ItemData = NULL;
}
static void
class_init(LassoIdWsf2DstRefDataResponseClass *klass)
@ -97,7 +92,7 @@ lasso_idwsf2_dstref_data_response_get_type()
NULL,
sizeof(LassoIdWsf2DstRefDataResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -64,11 +64,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefDelete *node)
{
node->DeleteItem = NULL;
}
static void
class_init(LassoIdWsf2DstRefDeleteClass *klass)
@ -97,7 +92,7 @@ lasso_idwsf2_dstref_delete_get_type()
NULL,
sizeof(LassoIdWsf2DstRefDelete),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefDeleteItem *node)
{
node->Select = NULL;
}
static void
class_init(LassoIdWsf2DstRefDeleteItemClass *klass)
@ -96,7 +91,7 @@ lasso_idwsf2_dstref_delete_item_get_type()
NULL,
sizeof(LassoIdWsf2DstRefDeleteItem),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -65,13 +65,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefItemData *node)
{
node->itemIDRef = NULL;
node->notSorted = NULL;
node->changeFormat = NULL;
}
static void
class_init(LassoIdWsf2DstRefItemDataClass *klass)
@ -100,7 +93,7 @@ lasso_idwsf2_dstref_item_data_get_type()
NULL,
sizeof(LassoIdWsf2DstRefItemData),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -101,14 +101,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefModify *node)
{
node->ModifyItem = NULL;
node->ResultQuery = NULL;
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoIdWsf2DstRefModifyClass *klass)
@ -139,7 +131,7 @@ lasso_idwsf2_dstref_modify_get_type()
NULL,
sizeof(LassoIdWsf2DstRefModify),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -72,16 +72,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefModifyItem *node)
{
node->Select = NULL;
node->NewData = NULL;
node->notChangedSince = NULL;
node->overrideAllowed = FALSE;
node->id = NULL;
node->itemID = NULL;
}
static void
class_init(LassoIdWsf2DstRefModifyItemClass *klass)
@ -110,7 +100,7 @@ lasso_idwsf2_dstref_modify_item_get_type()
NULL,
sizeof(LassoIdWsf2DstRefModifyItem),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -92,12 +92,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefModifyResponse *node)
{
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoIdWsf2DstRefModifyResponseClass *klass)
@ -128,7 +122,7 @@ lasso_idwsf2_dstref_modify_response_get_type()
NULL,
sizeof(LassoIdWsf2DstRefModifyResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -103,14 +103,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefQuery *node)
{
node->TestItem = NULL;
node->QueryItem = NULL;
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoIdWsf2DstRefQueryClass *klass)
@ -141,7 +133,7 @@ lasso_idwsf2_dstref_query_get_type()
NULL,
sizeof(LassoIdWsf2DstRefQuery),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -72,8 +72,6 @@ instance_init(LassoIdWsf2DstRefQueryItem *node)
{
node->count = -1;
node->offset = -1;
node->setID = NULL;
node->setReq = NULL;
}
static void

View File

@ -102,14 +102,6 @@ init_from_xml(LassoNode *node, xmlNode *xmlnode)
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefQueryResponse *node)
{
node->TestResult = NULL;
node->Data = NULL;
node->prefixServiceType = NULL;
node->hrefServiceType = NULL;
}
static void
class_init(LassoIdWsf2DstRefQueryResponseClass *klass)
@ -140,7 +132,7 @@ lasso_idwsf2_dstref_query_response_get_type()
NULL,
sizeof(LassoIdWsf2DstRefQueryResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefResultQuery *node)
{
node->Select = NULL;
node->Sort = NULL;
}
static void
class_init(LassoIdWsf2DstRefResultQueryClass *klass)
@ -100,7 +94,7 @@ lasso_idwsf2_dstref_result_query_get_type()
NULL,
sizeof(LassoIdWsf2DstRefResultQuery),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2DstRefTestItem *node)
{
node->TestOp = NULL;
}
static void
class_init(LassoIdWsf2DstRefTestItemClass *klass)
@ -96,7 +91,7 @@ lasso_idwsf2_dstref_test_item_get_type()
NULL,
sizeof(LassoIdWsf2DstRefTestItem),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -65,7 +65,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2ImsIdentityMappingRequest *node)
{
node->MappingInput = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -69,8 +69,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2ImsIdentityMappingResponse *node)
{
node->Status = NULL;
node->MappingOutput = NULL;
node->attributes = g_hash_table_new_full(
g_str_hash, g_str_equal, g_free, g_free);
}

View File

@ -65,13 +65,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2ImsMappingInput *node)
{
node->TokenPolicy = NULL;
node->Token = NULL;
node->reqID = NULL;
}
static void
class_init(LassoIdWsf2ImsMappingInputClass *klass)
@ -100,7 +93,7 @@ lasso_idwsf2_ims_mapping_input_get_type()
NULL,
sizeof(LassoIdWsf2ImsMappingInput),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -62,12 +62,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2ImsMappingOutput *node)
{
node->Token = NULL;
node->reqRef = NULL;
}
static void
class_init(LassoIdWsf2ImsMappingOutputClass *klass)
@ -96,7 +90,7 @@ lasso_idwsf2_ims_mapping_output_get_type()
NULL,
sizeof(LassoIdWsf2ImsMappingOutput),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -63,13 +63,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsHelp *node)
{
node->label = NULL;
node->link = NULL;
node->moreLink = NULL;
}
static void
class_init(LassoIdWsf2IsHelpClass *klass)
@ -98,7 +91,7 @@ lasso_idwsf2_is_help_get_type()
NULL,
sizeof(LassoIdWsf2IsHelp),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -77,16 +77,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsInquiry *node)
{
node->Help = NULL;
node->Select = NULL;
node->Confirm = NULL;
node->Text = NULL;
node->id = NULL;
node->title = NULL;
}
static void
class_init(LassoIdWsf2IsInquiryClass *klass)
@ -115,7 +105,7 @@ lasso_idwsf2_is_inquiry_get_type()
NULL,
sizeof(LassoIdWsf2IsInquiry),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -71,15 +71,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsInquiryElement *node)
{
node->Help = NULL;
node->Hint = NULL;
node->Label = NULL;
node->Value = NULL;
node->name = NULL;
}
static void
class_init(LassoIdWsf2IsInquiryElementClass *klass)
@ -108,7 +99,7 @@ lasso_idwsf2_is_inquiry_element_get_type()
NULL,
sizeof(LassoIdWsf2IsInquiryElement),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -74,16 +74,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsInteractionRequest *node)
{
node->Inquiry = NULL;
node->KeyInfo = NULL;
node->id = NULL;
node->language = NULL;
node->maxInteractTime = 0;
node->signed_ = NULL;
}
static void
class_init(LassoIdWsf2IsInteractionRequestClass *klass)
@ -112,7 +102,7 @@ lasso_idwsf2_is_interaction_request_get_type()
NULL,
sizeof(LassoIdWsf2IsInteractionRequest),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsInteractionResponse *node)
{
node->Status = NULL;
node->InteractionStatement = NULL;
node->Parameter = NULL;
}
static void
class_init(LassoIdWsf2IsInteractionResponseClass *klass)
@ -104,7 +97,7 @@ lasso_idwsf2_is_interaction_response_get_type()
NULL,
sizeof(LassoIdWsf2IsInteractionResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -79,7 +79,6 @@ static LassoNodeClass *parent_class = NULL;
static void
instance_init(LassoIdWsf2IsInteractionStatement *node)
{
node->Inquiry = NULL;
node->sign_type = LASSO_SIGNATURE_TYPE_NONE;
}

View File

@ -67,13 +67,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsItem *node)
{
node->Hint = NULL;
node->label = NULL;
node->value = NULL;
}
static void
class_init(LassoIdWsf2IsItemClass *klass)
@ -102,7 +95,7 @@ lasso_idwsf2_is_item_get_type()
NULL,
sizeof(LassoIdWsf2IsItem),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -60,12 +60,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsParameter *node)
{
node->name = NULL;
node->value = NULL;
}
static void
class_init(LassoIdWsf2IsParameterClass *klass)
@ -94,7 +88,7 @@ lasso_idwsf2_is_parameter_get_type()
NULL,
sizeof(LassoIdWsf2IsParameter),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -66,11 +66,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsSelect *node)
{
node->Item = NULL;
}
static void
class_init(LassoIdWsf2IsSelectClass *klass)
@ -99,7 +94,7 @@ lasso_idwsf2_is_select_get_type()
NULL,
sizeof(LassoIdWsf2IsSelect),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -67,13 +67,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2IsText *node)
{
node->minChars = 0;
node->maxChars = 0;
node->format = NULL;
}
static void
class_init(LassoIdWsf2IsTextClass *klass)
@ -102,7 +95,7 @@ lasso_idwsf2_is_text_get_type()
NULL,
sizeof(LassoIdWsf2IsText),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -66,12 +66,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddCollectionRequest *node)
{
node->Object = NULL;
node->Subscription = NULL;
}
static void
class_init(LassoIdWsf2PsAddCollectionRequestClass *klass)
@ -100,7 +94,7 @@ lasso_idwsf2_ps_add_collection_request_get_type()
NULL,
sizeof(LassoIdWsf2PsAddCollectionRequest),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -63,11 +63,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddCollectionResponse *node)
{
node->Object = NULL;
}
static void
class_init(LassoIdWsf2PsAddCollectionResponseClass *klass)
@ -96,7 +91,7 @@ lasso_idwsf2_ps_add_collection_response_get_type()
NULL,
sizeof(LassoIdWsf2PsAddCollectionResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddEntityRequest *node)
{
node->Object = NULL;
node->PStoSPRedirectURL = NULL;
node->CreatePSObject = NULL;
node->Subscription = NULL;
node->TokenPolicy = NULL;
}
static void
class_init(LassoIdWsf2PsAddEntityRequestClass *klass)
@ -112,7 +103,7 @@ lasso_idwsf2_ps_add_entity_request_get_type()
NULL,
sizeof(LassoIdWsf2PsAddEntityRequest),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddEntityResponse *node)
{
node->Object = NULL;
node->SPtoPSRedirectURL = NULL;
node->QueryString = NULL;
}
static void
class_init(LassoIdWsf2PsAddEntityResponseClass *klass)
@ -104,7 +97,7 @@ lasso_idwsf2_ps_add_entity_response_get_type()
NULL,
sizeof(LassoIdWsf2PsAddEntityResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -75,15 +75,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddKnownEntityRequest *node)
{
node->Object = NULL;
node->Token = NULL;
node->CreatePSObject = NULL;
node->Subscription = NULL;
node->TokenPolicy = NULL;
}
static void
class_init(LassoIdWsf2PsAddKnownEntityRequestClass *klass)
@ -112,7 +103,7 @@ lasso_idwsf2_ps_add_known_entity_request_get_type()
NULL,
sizeof(LassoIdWsf2PsAddKnownEntityRequest),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddKnownEntityResponse *node)
{
node->Object = NULL;
node->SPtoPSRedirectURL = NULL;
node->QueryString = NULL;
}
static void
class_init(LassoIdWsf2PsAddKnownEntityResponseClass *klass)
@ -104,7 +97,7 @@ lasso_idwsf2_ps_add_known_entity_response_get_type()
NULL,
sizeof(LassoIdWsf2PsAddKnownEntityResponse),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

View File

@ -69,13 +69,6 @@ static LassoNodeClass *parent_class = NULL;
/* instance and class init functions */
/*****************************************************************************/
static void
instance_init(LassoIdWsf2PsAddToCollectionRequest *node)
{
node->TargetObjectID = NULL;
node->ObjectID = NULL;
node->Subscription = NULL;
}
static void
class_init(LassoIdWsf2PsAddToCollectionRequestClass *klass)
@ -104,7 +97,7 @@ lasso_idwsf2_ps_add_to_collection_request_get_type()
NULL,
sizeof(LassoIdWsf2PsAddToCollectionRequest),
0,
(GInstanceInitFunc) instance_init,
NULL,
NULL
};

Some files were not shown because too many files have changed in this diff Show More