summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2005-03-02 08:33:08 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2005-03-02 08:33:08 +0000
commita2ba7e940e7ce9538ebb083136c06dcc2b52ab65 (patch)
tree10421d37d6a82e0100deac874225111aea60e79b
parent4b8ffde37140109d7fc896d7c63836bac16e0b7a (diff)
downloadlasso-a2ba7e940e7ce9538ebb083136c06dcc2b52ab65.tar.gz
lasso-a2ba7e940e7ce9538ebb083136c06dcc2b52ab65.tar.xz
lasso-a2ba7e940e7ce9538ebb083136c06dcc2b52ab65.zip
Use gchar instead of char.
-rw-r--r--lasso/id-wsf/discovery.c2
-rw-r--r--lasso/id-wsf/discovery.h2
-rw-r--r--lasso/id-wsf/interaction_profile_service.c4
-rw-r--r--lasso/id-wsf/interaction_profile_service.h4
-rw-r--r--lasso/id-wsf/profile_service.c42
-rw-r--r--lasso/id-wsf/profile_service.h42
6 files changed, 48 insertions, 48 deletions
diff --git a/lasso/id-wsf/discovery.c b/lasso/id-wsf/discovery.c
index 00f63f48..3961ae0e 100644
--- a/lasso/id-wsf/discovery.c
+++ b/lasso/id-wsf/discovery.c
@@ -160,7 +160,7 @@ lasso_discovery_add_remove_entry(LassoDiscovery *discovery,
LassoDiscoRequestedServiceType*
lasso_discovery_add_requested_service_type(LassoDiscovery *discovery,
const gchar *serviceType,
- const char *option)
+ const gchar *option)
{
LassoDiscoQuery *query;
LassoDiscoRequestedServiceType *rst;
diff --git a/lasso/id-wsf/discovery.h b/lasso/id-wsf/discovery.h
index 9556d9c1..77132595 100644
--- a/lasso/id-wsf/discovery.h
+++ b/lasso/id-wsf/discovery.h
@@ -86,7 +86,7 @@ LASSO_EXPORT gint lasso_discovery_add_remove_entry(LassoDiscov
LASSO_EXPORT LassoDiscoRequestedServiceType* lasso_discovery_add_requested_service_type(
LassoDiscovery *discovery,
const gchar *serviceType,
- const char *options);
+ const gchar *options);
LASSO_EXPORT gint lasso_discovery_add_resource_offering(
LassoDiscovery *discovery,
diff --git a/lasso/id-wsf/interaction_profile_service.c b/lasso/id-wsf/interaction_profile_service.c
index 42bbcbcb..4ecc8ed5 100644
--- a/lasso/id-wsf/interaction_profile_service.c
+++ b/lasso/id-wsf/interaction_profile_service.c
@@ -51,7 +51,7 @@ lasso_interaction_profile_service_init_request(LassoInteractionProfileService *s
gint
lasso_interaction_profile_service_process_request_msg(LassoInteractionProfileService *service,
- const char *msg)
+ const gchar *msg)
{
LassoIsInteractionRequest *request;
@@ -63,7 +63,7 @@ lasso_interaction_profile_service_process_request_msg(LassoInteractionProfileSer
gint
lasso_interaction_profile_service_process_response_msg(LassoInteractionProfileService *service,
- const char *msg)
+ const gchar *msg)
{
LassoIsInteractionResponse *response;
diff --git a/lasso/id-wsf/interaction_profile_service.h b/lasso/id-wsf/interaction_profile_service.h
index 10fe4341..d351fa6c 100644
--- a/lasso/id-wsf/interaction_profile_service.h
+++ b/lasso/id-wsf/interaction_profile_service.h
@@ -70,11 +70,11 @@ LASSO_EXPORT gint lasso_interaction_profile_service_init_request(
LASSO_EXPORT gint lasso_interaction_profile_service_process_request_msg(
LassoInteractionProfileService *service,
- const char *request_msg);
+ const gchar *request_msg);
LASSO_EXPORT gint lasso_interaction_profile_service_process_response_msg(
LassoInteractionProfileService *service,
- const char *response_msg);
+ const gchar *response_msg);
#ifdef __cplusplus
diff --git a/lasso/id-wsf/profile_service.c b/lasso/id-wsf/profile_service.c
index 78e4268f..cb6767e0 100644
--- a/lasso/id-wsf/profile_service.c
+++ b/lasso/id-wsf/profile_service.c
@@ -33,7 +33,7 @@
/*****************************************************************************/
gint
-lasso_profile_service_add_data(LassoProfileService *service, const char *xmlNodeBuffer)
+lasso_profile_service_add_data(LassoProfileService *service, const gchar *xmlNodeBuffer)
{
LassoWsfProfile *profile;
LassoDstData *data;
@@ -60,7 +60,7 @@ lasso_profile_service_add_data(LassoProfileService *service, const char *xmlNode
}
LassoDstModification*
-lasso_profile_service_add_modification(LassoProfileService *service, const char *select)
+lasso_profile_service_add_modification(LassoProfileService *service, const gchar *select)
{
LassoWsfProfile *profile;
LassoDstModification *modification;
@@ -78,7 +78,7 @@ lasso_profile_service_add_modification(LassoProfileService *service, const char
}
LassoDstQueryItem*
-lasso_profile_service_add_query_item(LassoProfileService *service, const char *select)
+lasso_profile_service_add_query_item(LassoProfileService *service, const gchar *select)
{
LassoWsfProfile *profile;
LassoDstQueryItem *query_item;
@@ -97,11 +97,11 @@ lasso_profile_service_add_query_item(LassoProfileService *service, const char *s
LassoDstModification*
lasso_profile_service_init_modify(LassoProfileService *service,
- const char *prefix,
- const char *href,
+ const gchar *prefix,
+ const gchar *href,
LassoDiscoResourceOffering *resourceOffering,
LassoDiscoDescription *description,
- const char *select)
+ const gchar *select)
{
LassoDstModification *modification;
LassoWsfProfile *profile;
@@ -138,11 +138,11 @@ lasso_profile_service_init_modify(LassoProfileService *service,
LassoDstQueryItem*
lasso_profile_service_init_query(LassoProfileService *service,
- const char *prefix,
- const char *href,
+ const gchar *prefix,
+ const gchar *href,
LassoDiscoResourceOffering *resourceOffering,
LassoDiscoDescription *description,
- const char *select)
+ const gchar *select)
{
LassoDstQueryItem *query_item;
LassoWsfProfile *profile;
@@ -180,9 +180,9 @@ lasso_profile_service_init_query(LassoProfileService *service,
gint
lasso_profile_service_process_modify_msg(LassoProfileService *service,
- const char *prefix, /* FIXME : must be get from message */
- const char *href, /* FIXME : must be get from message */
- const char *modify_soap_msg)
+ const gchar *prefix, /* FIXME : must be get from message */
+ const gchar *href, /* FIXME : must be get from message */
+ const gchar *modify_soap_msg)
{
LassoDstModify *modify;
LassoWsfProfile *profile;
@@ -211,9 +211,9 @@ lasso_profile_service_process_modify_msg(LassoProfileService *service,
gint
lasso_profile_service_process_query_msg(LassoProfileService *service,
- const char *prefix, /* FIXME : must be get from message */
- const char *href, /* FIXME : must be get from message */
- const char *query_soap_msg)
+ const gchar *prefix, /* FIXME : must be get from message */
+ const gchar *href, /* FIXME : must be get from message */
+ const gchar *query_soap_msg)
{
LassoDstQuery *query;
LassoWsfProfile *profile;
@@ -240,9 +240,9 @@ lasso_profile_service_process_query_msg(LassoProfileService *service,
gint
lasso_profile_service_process_query_response_msg(LassoProfileService *service,
- const char *prefix,
- const char *href,
- const char *query_response_soap_msg)
+ const gchar *prefix,
+ const gchar *href,
+ const gchar *query_response_soap_msg)
{
LassoDstQueryResponse *query_response;
@@ -259,9 +259,9 @@ lasso_profile_service_process_query_response_msg(LassoProfileService *service,
gint
lasso_profile_service_process_modify_response_msg(LassoProfileService *service,
- const char *prefix,
- const char *href,
- const char *modify_response_soap_msg)
+ const gchar *prefix,
+ const gchar *href,
+ const gchar *modify_response_soap_msg)
{
LassoDstModifyResponse *modify_response;
diff --git a/lasso/id-wsf/profile_service.h b/lasso/id-wsf/profile_service.h
index 1e010854..71eeb6d9 100644
--- a/lasso/id-wsf/profile_service.h
+++ b/lasso/id-wsf/profile_service.h
@@ -70,51 +70,51 @@ LASSO_EXPORT LassoProfileService* lasso_profile_service_new(LassoServer *server)
LASSO_EXPORT gint lasso_profile_service_add_data(LassoProfileService *service,
- const char *xmlNodeBuffer);
+ const gchar *xmlNodeBuffer);
LASSO_EXPORT LassoDstModification* lasso_profile_service_add_modification(
LassoProfileService *service,
- const char *select);
+ const gchar *select);
LASSO_EXPORT LassoDstQueryItem* lasso_profile_service_add_query_item(LassoProfileService *service,
- const char *select);
+ const gchar *select);
LASSO_EXPORT gint lasso_profile_service_build_request_msg(LassoProfileService *service);
LASSO_EXPORT LassoDstModification* lasso_profile_service_init_modify(
LassoProfileService *service,
- const char *prefix,
- const char *href,
+ const gchar *prefix,
+ const gchar *href,
LassoDiscoResourceOffering *ro,
LassoDiscoDescription *desc,
- const char *select);
+ const gchar *select);
LASSO_EXPORT LassoDstQueryItem* lasso_profile_service_init_query(LassoProfileService *service,
- const char *prefix,
- const char *href,
+ const gchar *prefix,
+ const gchar *href,
LassoDiscoResourceOffering *ro,
LassoDiscoDescription *desc,
- const char *select);
+ const gchar *select);
LASSO_EXPORT gint lasso_profile_service_process_modify_msg(LassoProfileService *service,
- const char *prefix,
- const char *href,
- const char *soap_msg);
+ const gchar *prefix,
+ const gchar *href,
+ const gchar *soap_msg);
LASSO_EXPORT gint lasso_profile_service_process_modify_response_msg(LassoProfileService *service,
- const char *prefix,
- const char *href,
- const char *soap_msg);
+ const gchar *prefix,
+ const gchar *href,
+ const gchar *soap_msg);
LASSO_EXPORT gint lasso_profile_service_process_query_msg(LassoProfileService *service,
- const char *prefix,
- const char *href,
- const char *soap_msg);
+ const gchar *prefix,
+ const gchar *href,
+ const gchar *soap_msg);
LASSO_EXPORT gint lasso_profile_service_process_query_response_msg(LassoProfileService *service,
- const char *prefix,
- const char *href,
- const char *soap_msg);
+ const gchar *prefix,
+ const gchar *href,
+ const gchar *soap_msg);
#ifdef __cplusplus
}