Type change

This commit is contained in:
vemax78 2013-11-24 19:20:33 +01:00
parent 33099da3b7
commit e320bef6a7
2 changed files with 2 additions and 2 deletions

View File

@ -502,7 +502,7 @@ void ac_soapclient_free_request(struct ac_soap_request* request) {
}
/* */
int ac_soapclient_add_param(struct ac_soap_request* request, char* type, char* name, char* value) {
int ac_soapclient_add_param(struct ac_soap_request* request, const char* type, const char* name, const char* value) {
xmlNodePtr xmlParam;
ASSERT(request != NULL);

View File

@ -86,7 +86,7 @@ void ac_soapclient_free_server(struct ac_http_soap_server* server);
/* Request */
struct ac_soap_request* ac_soapclient_create_request(char* method, char* urinamespace);
int ac_soapclient_add_param(struct ac_soap_request* request, char* type, char* name, char* value);
int ac_soapclient_add_param(struct ac_soap_request* request, const char* type, const char* name, const char* value);
char* ac_soapclient_get_request(struct ac_soap_request* request);
void ac_soapclient_free_request(struct ac_soap_request* request);