I am using code generated with gSOAP, and need to use declarations as they have been provided if possible.
gSOAP's generated code provides the following prototype:
soap_call___accounts(struct soap *soap, struct _acnt *acnt, struct _resp *resp);
as well as the following struct definition:
struct _acnt
{
int sizeacnt;
char **acntNum;
};
In my calling application I need to send an account number such as "00000123" using the structure member acntNum
as part of the acnt
argument in the calling function, but before it can be used to do that, it needs to be initialized.
How is char **acntNum
initialized?