diff --git a/kaddressbook/printing/detailledstyle.cpp b/kaddressbook/printing/detailledstyle.cpp index 41d6231e..55ac89ca 100644 --- a/kaddressbook/printing/detailledstyle.cpp +++ b/kaddressbook/printing/detailledstyle.cpp @@ -215,7 +215,7 @@ void DetailledPrintStyle::print( const TDEABC::Addressee::List &contacts, PrintP marginRight = 0, marginBottom = 0; - register int left, top, width, height; + int left, top, width, height; painter.begin( printer ); printer->setFullPage( true ); // use whole page diff --git a/libkcal/versit/vcc.c b/libkcal/versit/vcc.c index 4351d6b0..18f20bea 100644 --- a/libkcal/versit/vcc.c +++ b/libkcal/versit/vcc.c @@ -373,7 +373,7 @@ union yyalloc # define YYCOPY(To, From, Count) \ do \ { \ - register YYSIZE_T yyi; \ + YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ @@ -839,7 +839,7 @@ yystrlen (yystr) const char *yystr; # endif { - register const char *yys = yystr; + const char *yys = yystr; while (*yys++ != '\0') continue; @@ -864,8 +864,8 @@ yystpcpy (yydest, yysrc) const char *yysrc; # endif { - register char *yyd = yydest; - register const char *yys = yysrc; + char *yyd = yydest; + const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; @@ -995,8 +995,8 @@ yyparse () #endif { - register int yystate; - register int yyn; + int yystate; + int yyn; int yyresult; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; @@ -1014,12 +1014,12 @@ yyparse () /* The state stack. */ short yyssa[YYINITDEPTH]; short *yyss = yyssa; - register short *yyssp; + short *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; - register YYSTYPE *yyvsp; + YYSTYPE *yyvsp; diff --git a/libkholidays/parseholiday.c b/libkholidays/parseholiday.c index c215515e..1923d955 100644 --- a/libkholidays/parseholiday.c +++ b/libkholidays/parseholiday.c @@ -2571,8 +2571,8 @@ static int day_from_wday(int day, int wday, int num) static void initialize() { - register struct holiday *hp; - register int dy; + struct holiday *hp; + int dy; initialized = 1; for (hp=holidays, dy=0; dy < 366; dy++, hp++) { @@ -2594,8 +2594,8 @@ static void initialize() char *parse_holidays(const char *holidayfile, int year, short force) { - register struct holiday *hp; - register int dy; + struct holiday *hp; + int dy; short piped = 0; if (!initialized) initialize(); diff --git a/libkholidays/parseholiday.y b/libkholidays/parseholiday.y index fd03b11d..50e80cb9 100644 --- a/libkholidays/parseholiday.y +++ b/libkholidays/parseholiday.y @@ -634,8 +634,8 @@ static int day_from_wday(int day, int wday, int num) static void initialize() { - register struct holiday *hp; - register int dy; + struct holiday *hp; + int dy; initialized = 1; for (hp=holidays, dy=0; dy < 366; dy++, hp++) { @@ -657,8 +657,8 @@ static void initialize() char *parse_holidays(const char *holidayfile, int year, short force) { - register struct holiday *hp; - register int dy; + struct holiday *hp; + int dy; short piped = 0; if (!initialized) initialize(); diff --git a/libkholidays/scanholiday.c b/libkholidays/scanholiday.c index 4ea97560..a0958a38 100644 --- a/libkholidays/scanholiday.c +++ b/libkholidays/scanholiday.c @@ -714,9 +714,9 @@ YY_MALLOC_DECL YY_DECL { - register yy_state_type yy_current_state; - register char *yy_cp = NULL, *yy_bp = NULL; - register int yy_act; + yy_state_type yy_current_state; + char *yy_cp = NULL, *yy_bp = NULL; + int yy_act; #line 13 "scanholiday.lex" @@ -764,7 +764,7 @@ YY_DECL yy_match: do { - register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; + YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; @@ -1293,9 +1293,9 @@ case YY_STATE_EOF(INITIAL): static int yy_get_next_buffer() { - register char *dest = yy_current_buffer->yy_ch_buf; - register char *source = yytext_ptr; - register int number_to_move, i; + char *dest = yy_current_buffer->yy_ch_buf; + char *source = yytext_ptr; + int number_to_move, i; int ret_val; if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) @@ -1425,15 +1425,15 @@ static int yy_get_next_buffer() static yy_state_type yy_get_previous_state() { - register yy_state_type yy_current_state; - register char *yy_cp; + yy_state_type yy_current_state; + char *yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { - register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); + YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; @@ -1465,10 +1465,10 @@ static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { - register int yy_is_jam; - register char *yy_cp = yy_c_buf_p; + int yy_is_jam; + char *yy_cp = yy_c_buf_p; - register YY_CHAR yy_c = 1; + YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; @@ -1489,14 +1489,14 @@ yy_state_type yy_current_state; #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS -static void yyunput( int c, register char *yy_bp ) +static void yyunput( int c, char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; -register char *yy_bp; +char *yy_bp; #endif { - register char *yy_cp = yy_c_buf_p; + char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; @@ -1504,10 +1504,10 @@ register char *yy_bp; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ - register int number_to_move = yy_n_chars + 2; - register char *dest = &yy_current_buffer->yy_ch_buf[ + int number_to_move = yy_n_chars + 2; + char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; - register char *source = + char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) @@ -1965,7 +1965,7 @@ yyconst char *s2; int n; #endif { - register int i; + int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } @@ -1979,7 +1979,7 @@ static int yy_flex_strlen( s ) yyconst char *s; #endif { - register int n; + int n; for ( n = 0; s[n]; ++n ) ; diff --git a/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c b/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c index 4e9fc10a..7e6fa69e 100644 --- a/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c +++ b/libtdenetwork/libgpgme-copy/gpgme/stpcpy.c @@ -35,8 +35,8 @@ __stpcpy (dest, src) char *dest; const char *src; { - register char *d = dest; - register const char *s = src; + char *d = dest; + const char *s = src; do *d++ = *s; diff --git a/libtdepim/kxface.cpp b/libtdepim/kxface.cpp index 210fefb5..3363851c 100644 --- a/libtdepim/kxface.cpp +++ b/libtdepim/kxface.cpp @@ -191,10 +191,10 @@ void KXFace::BigPush(Prob *p) BigAdd(tmp + p->p_offset); } -int KXFace::BigPop(register const Prob *p) +int KXFace::BigPop(const Prob *p) { static unsigned char tmp; - register int i; + int i; BigDiv(0, &tmp); i = 0; @@ -212,11 +212,11 @@ int KXFace::BigPop(register const Prob *p) /* Divide B by a storing the result in B and the remainder in the word * pointer to by r */ -void KXFace::BigDiv(register unsigned char a, register unsigned char *r) +void KXFace::BigDiv(unsigned char a, unsigned char *r) { - register int i; - register unsigned char *w; - register COMP c, d; + int i; + unsigned char *w; + COMP c, d; a &= WORDMASK; if ((a == 1) || (B.b_words == 0)) @@ -254,11 +254,11 @@ void KXFace::BigDiv(register unsigned char a, register unsigned char *r) /* Multiply a by B storing the result in B */ -void KXFace::BigMul(register unsigned char a) +void KXFace::BigMul(unsigned char a) { - register int i; - register unsigned char *w; - register COMP c; + int i; + unsigned char *w; + COMP c; a &= WORDMASK; if ((a == 1) || (B.b_words == 0)) @@ -297,9 +297,9 @@ void KXFace::BigMul(register unsigned char a) */ void KXFace::BigAdd(unsigned char a) { - register int i; - register unsigned char *w; - register COMP c; + int i; + unsigned char *w; + COMP c; a &= WORDMASK; if (a == 0) @@ -329,8 +329,8 @@ void KXFace::BigClear() TQCString KXFace::WriteFace() { - register char *s; - register int i, j, bits, digits, words; + char *s; + int i, j, bits, digits, words; int digsperword = DIGSPERWORD; int wordsperline = WORDSPERLINE; TQCString t( "#define noname_width 48\n#define noname_height 48\nstatic char noname_bits[] = {\n " ); @@ -379,7 +379,7 @@ TQCString KXFace::WriteFace() void KXFace::UnCompAll(char *fbuf) { - register char *p; + char *p; BigClear(); BigRead(fbuf); @@ -418,12 +418,12 @@ void KXFace::UnCompress(char *f, int wid, int hei, int lev) } } -void KXFace::BigWrite(register char *fbuf) +void KXFace::BigWrite(char *fbuf) { static unsigned char tmp; static char buf[DIGITS]; - register char *s; - register int i; + char *s; + int i; s = buf; while (B.b_words > 0) @@ -449,9 +449,9 @@ void KXFace::BigWrite(register char *fbuf) *(fbuf++) = '\0'; } -void KXFace::BigRead(register char *fbuf) +void KXFace::BigRead(char *fbuf) { - register int c; + int c; while (*fbuf != '\0') { @@ -465,8 +465,8 @@ void KXFace::BigRead(register char *fbuf) void KXFace::ReadFace(char *fbuf) { - register int c, i; - register char *s, *t; + int c, i; + char *s, *t; t = s = fbuf; for(i = strlen(s); i > 0; i--) @@ -521,9 +521,9 @@ void KXFace::ReadFace(char *fbuf) void KXFace::GenFace() { static char newp[PIXELS]; - register char *f1; - register char *f2; - register int i; + char *f1; + char *f2; + int i; f1 = newp; f2 = F; @@ -539,9 +539,9 @@ void KXFace::UnGenFace() } // static -void KXFace::Gen(register char *f) +void KXFace::Gen(char *f) { - register int m, l, k, j, i, h; + int m, l, k, j, i, h; for (j = 0; j < HEIGHT; j++) { @@ -649,7 +649,7 @@ void KXFace::CompAll(char *fbuf) BigWrite(fbuf); } -void KXFace::Compress(register char *f, register int wid, register int hei, register int lev) +void KXFace::Compress(char *f, int wid, int hei, int lev) { if (AllWhite(f, wid, hei)) { @@ -691,10 +691,10 @@ int KXFace::AllBlack(char *f, int wid, int hei) return (*f || *(f + 1) || *(f + WIDTH) || *(f + WIDTH + 1)); } -int KXFace::Same(register char *f, register int wid, register int hei) +int KXFace::Same(char *f, int wid, int hei) { - register char val, *row; - register int x; + char val, *row; + int x; val = *f; while (hei--) diff --git a/libtdepim/kxface.h b/libtdepim/kxface.h index 85d3d9fa..d6a235d8 100644 --- a/libtdepim/kxface.h +++ b/libtdepim/kxface.h @@ -566,26 +566,26 @@ namespace KPIM { void RevPush(const Prob *p); void BigPush(Prob *p); int BigPop(register const Prob *p); - void BigDiv(register unsigned char a, register unsigned char *r); - void BigMul(register unsigned char a); + void BigDiv(unsigned char a, unsigned char *r); + void BigMul(unsigned char a); void BigAdd(unsigned char a); void BigClear(); TQCString WriteFace(); void UnCompAll(char *fbuf); - void UnCompress(register char *f, register int wid, register int hei, register int lev); - void BigWrite(register char *fbuf); - void BigRead(register char *fbuf); + void UnCompress(char *f, int wid, int hei, int lev); + void BigWrite(char *fbuf); + void BigRead(char *fbuf); void ReadFace(char *fbuf); void GenFace(); void UnGenFace(); - void Gen(register char *f); + void Gen(char *f); void PopGreys(char *f, int wid, int hei); void CompAll(char *fbuf); - void Compress(register char *f, register int wid, register int hei, register int lev); + void Compress(char *f, int wid, int hei, int lev); int AllWhite(char *f, int wid, int hei); int AllBlack(char *f, int wid, int hei); - int Same(register char *f, register int wid, register int hei); + int Same(char *f, int wid, int hei); void PushGreys(char *f, int wid, int hei); diff --git a/tderesources/groupwise/soap/patches/broken_namespace.diff b/tderesources/groupwise/soap/patches/broken_namespace.diff index 46c5eee4..90728724 100644 --- a/tderesources/groupwise/soap/patches/broken_namespace.diff +++ b/tderesources/groupwise/soap/patches/broken_namespace.diff @@ -6,7 +6,7 @@ SOAP_FMAC2 -soap_match_tag(struct soap *soap, const char *tag1, const char *tag2) +soap_match_tag(struct soap *soap, const char *tag1, const char *tag2_) - { register const char *s, *t; + { const char *s, *t; - if (!tag1 || !tag2 || !*tag2) + if (!tag1 || !tag2_ || !*tag2_) return SOAP_OK; diff --git a/tderesources/groupwise/soap/soapC.cpp b/tderesources/groupwise/soap/soapC.cpp index 6decf59f..bab269fa 100644 --- a/tderesources/groupwise/soap/soapC.cpp +++ b/tderesources/groupwise/soap/soapC.cpp @@ -10062,7 +10062,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__DayOfMonth(struct soap *soap, char SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__DayOfMonth(struct soap *soap, const char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfMonth); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfMonth); if (soap_out_ngwt__DayOfMonth(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10097,7 +10097,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_byte(struct soap *soap, char *a) SOAP_FMAC3 int SOAP_FMAC4 soap_put_byte(struct soap *soap, const char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_byte); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_byte); if (soap_out_byte(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10126,7 +10126,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__WeekOfYear(struct soap *soap, shor SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__WeekOfYear(struct soap *soap, const short *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__WeekOfYear); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__WeekOfYear); if (soap_out_ngwt__WeekOfYear(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10155,7 +10155,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__DayOfYear(struct soap *soap, short SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__DayOfYear(struct soap *soap, const short *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYear); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYear); if (soap_out_ngwt__DayOfYear(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10190,7 +10190,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_short(struct soap *soap, short *a) SOAP_FMAC3 int SOAP_FMAC4 soap_put_short(struct soap *soap, const short *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_short); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_short); if (soap_out_short(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10219,7 +10219,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__GMTOffset(struct soap *soap, int * SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__GMTOffset(struct soap *soap, const int *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__GMTOffset); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__GMTOffset); if (soap_out_ngwt__GMTOffset(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10254,7 +10254,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_int(struct soap *soap, int *a) SOAP_FMAC3 int SOAP_FMAC4 soap_put_int(struct soap *soap, const int *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_int); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_int); if (soap_out_int(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10289,7 +10289,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_long(struct soap *soap, long *a) SOAP_FMAC3 int SOAP_FMAC4 soap_put_long(struct soap *soap, const long *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_long); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_long); if (soap_out_long(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10318,7 +10318,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__Month(struct soap *soap, unsigned SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__Month(struct soap *soap, const unsigned char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Month); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Month); if (soap_out_ngwt__Month(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10347,7 +10347,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__Minute(struct soap *soap, unsigned SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__Minute(struct soap *soap, const unsigned char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Minute); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Minute); if (soap_out_ngwt__Minute(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10376,7 +10376,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__Hour(struct soap *soap, unsigned c SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__Hour(struct soap *soap, const unsigned char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Hour); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Hour); if (soap_out_ngwt__Hour(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10405,7 +10405,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__Day(struct soap *soap, unsigned ch SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__Day(struct soap *soap, const unsigned char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Day); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Day); if (soap_out_ngwt__Day(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10440,7 +10440,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_unsignedByte(struct soap *soap, unsigned SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedByte(struct soap *soap, const unsigned char *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_unsignedByte); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_unsignedByte); if (soap_out_unsignedByte(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10475,7 +10475,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_unsignedInt(struct soap *soap, unsigned SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedInt(struct soap *soap, const unsigned int *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_unsignedInt); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_unsignedInt); if (soap_out_unsignedInt(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10510,7 +10510,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_unsignedLong(struct soap *soap, unsigned SOAP_FMAC3 int SOAP_FMAC4 soap_put_unsignedLong(struct soap *soap, const unsigned long *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_unsignedLong); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_unsignedLong); if (soap_out_unsignedLong(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10545,7 +10545,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_bool(struct soap *soap, bool *a) SOAP_FMAC3 int SOAP_FMAC4 soap_put_bool(struct soap *soap, const bool *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_bool); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_bool); if (soap_out_bool(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10629,7 +10629,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwe__ItemType(struct soap *soap, enum n SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwe__ItemType(struct soap *soap, const enum ngwe__ItemType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__ItemType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__ItemType); if (soap_out_ngwe__ItemType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10723,7 +10723,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwe__Field(struct soap *soap, enum ngwe SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwe__Field(struct soap *soap, const enum ngwe__Field *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__Field); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__Field); if (soap_out_ngwe__Field(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10834,7 +10834,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwe__EventType(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwe__EventType(struct soap *soap, const enum ngwe__EventType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__EventType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__EventType); if (soap_out_ngwe__EventType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -10954,7 +10954,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__WeekDay(struct soap *soap, enum ng SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__WeekDay(struct soap *soap, const enum ngwt__WeekDay *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__WeekDay); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__WeekDay); if (soap_out_ngwt__WeekDay(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11043,7 +11043,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__VersionStatus(struct soap *soap, e SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__VersionStatus(struct soap *soap, const enum ngwt__VersionStatus *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__VersionStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__VersionStatus); if (soap_out_ngwt__VersionStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11132,7 +11132,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__VersionEventType(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__VersionEventType(struct soap *soap, const enum ngwt__VersionEventType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__VersionEventType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__VersionEventType); if (soap_out_ngwt__VersionEventType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11230,7 +11230,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__StatusTrackingOptions(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__StatusTrackingOptions(struct soap *soap, const enum ngwt__StatusTrackingOptions *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__StatusTrackingOptions); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__StatusTrackingOptions); if (soap_out_ngwt__StatusTrackingOptions(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11316,7 +11316,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__RuleActionType(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__RuleActionType(struct soap *soap, const enum ngwt__RuleActionType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__RuleActionType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__RuleActionType); if (soap_out_ngwt__RuleActionType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11414,7 +11414,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__RetractType(struct soap *soap, enu SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__RetractType(struct soap *soap, const enum ngwt__RetractType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__RetractType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__RetractType); if (soap_out_ngwt__RetractType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11499,7 +11499,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__RecipientType(struct soap *soap, e SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__RecipientType(struct soap *soap, const enum ngwt__RecipientType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__RecipientType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__RecipientType); if (soap_out_ngwt__RecipientType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11587,7 +11587,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__PostalAddressType(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__PostalAddressType(struct soap *soap, const enum ngwt__PostalAddressType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__PostalAddressType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__PostalAddressType); if (soap_out_ngwt__PostalAddressType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11671,7 +11671,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__PhoneNumberType(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__PhoneNumberType(struct soap *soap, const enum ngwt__PhoneNumberType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneNumberType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneNumberType); if (soap_out_ngwt__PhoneNumberType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11758,7 +11758,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__OccurrenceType(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__OccurrenceType(struct soap *soap, const enum ngwt__OccurrenceType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__OccurrenceType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__OccurrenceType); if (soap_out_ngwt__OccurrenceType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11846,7 +11846,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__NotificationType(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__NotificationType(struct soap *soap, const enum ngwt__NotificationType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__NotificationType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__NotificationType); if (soap_out_ngwt__NotificationType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -11930,7 +11930,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__MessageType(struct soap *soap, enu SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__MessageType(struct soap *soap, const enum ngwt__MessageType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__MessageType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__MessageType); if (soap_out_ngwt__MessageType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12021,7 +12021,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__MessageList(struct soap *soap, enu SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__MessageList(struct soap *soap, const enum ngwt__MessageList *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__MessageList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__MessageList); if (soap_out_ngwt__MessageList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12106,7 +12106,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__LinkType(struct soap *soap, enum n SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__LinkType(struct soap *soap, const enum ngwt__LinkType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__LinkType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__LinkType); if (soap_out_ngwt__LinkType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12190,7 +12190,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__JunkMatchType(struct soap *soap, e SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__JunkMatchType(struct soap *soap, const enum ngwt__JunkMatchType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__JunkMatchType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__JunkMatchType); if (soap_out_ngwt__JunkMatchType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12274,7 +12274,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__JunkHandlingListType(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__JunkHandlingListType(struct soap *soap, const enum ngwt__JunkHandlingListType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__JunkHandlingListType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__JunkHandlingListType); if (soap_out_ngwt__JunkHandlingListType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12359,7 +12359,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__ItemSource(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__ItemSource(struct soap *soap, const enum ngwt__ItemSource *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemSource); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemSource); if (soap_out_ngwt__ItemSource(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12445,7 +12445,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__ItemSecurity(struct soap *soap, en SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__ItemSecurity(struct soap *soap, const enum ngwt__ItemSecurity *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemSecurity); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemSecurity); if (soap_out_ngwt__ItemSecurity(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12535,7 +12535,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__ItemOptionsPriority(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__ItemOptionsPriority(struct soap *soap, const enum ngwt__ItemOptionsPriority *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemOptionsPriority); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemOptionsPriority); if (soap_out_ngwt__ItemOptionsPriority(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12620,7 +12620,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__ItemClass(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__ItemClass(struct soap *soap, const enum ngwt__ItemClass *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemClass); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemClass); if (soap_out_ngwt__ItemClass(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12704,7 +12704,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__Frequency(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__Frequency(struct soap *soap, const enum ngwt__Frequency *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Frequency); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Frequency); if (soap_out_ngwt__Frequency(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12790,7 +12790,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__FolderType(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__FolderType(struct soap *soap, const enum ngwt__FolderType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FolderType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FolderType); if (soap_out_ngwt__FolderType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12889,7 +12889,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__FolderACLStatus(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__FolderACLStatus(struct soap *soap, const enum ngwt__FolderACLStatus *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FolderACLStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FolderACLStatus); if (soap_out_ngwt__FolderACLStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -12976,7 +12976,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__FilterOp(struct soap *soap, enum n SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__FilterOp(struct soap *soap, const enum ngwt__FilterOp *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FilterOp); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FilterOp); if (soap_out_ngwt__FilterOp(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13081,7 +13081,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__FilterDate(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__FilterDate(struct soap *soap, const enum ngwt__FilterDate *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FilterDate); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__FilterDate); if (soap_out_ngwt__FilterDate(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13169,7 +13169,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__Execution(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__Execution(struct soap *soap, const enum ngwt__Execution *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Execution); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__Execution); if (soap_out_ngwt__Execution(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13258,7 +13258,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__DistributionType(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__DistributionType(struct soap *soap, const enum ngwt__DistributionType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DistributionType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DistributionType); if (soap_out_ngwt__DistributionType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13343,7 +13343,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__DeltaSyncType(struct soap *soap, e SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__DeltaSyncType(struct soap *soap, const enum ngwt__DeltaSyncType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DeltaSyncType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__DeltaSyncType); if (soap_out_ngwt__DeltaSyncType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13428,7 +13428,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__CustomType(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__CustomType(struct soap *soap, const enum ngwt__CustomType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CustomType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CustomType); if (soap_out_ngwt__CustomType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13514,7 +13514,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__CursorSeek(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__CursorSeek(struct soap *soap, const enum ngwt__CursorSeek *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CursorSeek); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CursorSeek); if (soap_out_ngwt__CursorSeek(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13599,7 +13599,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__ContactType(struct soap *soap, enu SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__ContactType(struct soap *soap, const enum ngwt__ContactType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ContactType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ContactType); if (soap_out_ngwt__ContactType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13687,7 +13687,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__CategoryType(struct soap *soap, en SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__CategoryType(struct soap *soap, const enum ngwt__CategoryType *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CategoryType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CategoryType); if (soap_out_ngwt__CategoryType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13774,7 +13774,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__CalendarFolderFlags(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__CalendarFolderFlags(struct soap *soap, const enum ngwt__CalendarFolderFlags *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CalendarFolderFlags); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__CalendarFolderFlags); if (soap_out_ngwt__CalendarFolderFlags(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13858,7 +13858,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__AppointmentConflict(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__AppointmentConflict(struct soap *soap, const enum ngwt__AppointmentConflict *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__AppointmentConflict); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__AppointmentConflict); if (soap_out_ngwt__AppointmentConflict(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -13943,7 +13943,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__AgeAction(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__AgeAction(struct soap *soap, const enum ngwt__AgeAction *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__AgeAction); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__AgeAction); if (soap_out_ngwt__AgeAction(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14028,7 +14028,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__AcceptLevel(struct soap *soap, enu SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__AcceptLevel(struct soap *soap, const enum ngwt__AcceptLevel *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__AcceptLevel); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__AcceptLevel); if (soap_out_ngwt__AcceptLevel(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14114,7 +14114,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwe__ItemTypeList(struct soap *soap, en SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwe__ItemTypeList(struct soap *soap, const enum ngwe__ItemTypeList *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__ItemTypeList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__ItemTypeList); if (soap_out_ngwe__ItemTypeList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14233,7 +14233,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwe__FieldList(struct soap *soap, enum SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwe__FieldList(struct soap *soap, const enum ngwe__FieldList *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__FieldList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwe__FieldList); if (soap_out_ngwe__FieldList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14420,7 +14420,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__MessageTypeList(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__MessageTypeList(struct soap *soap, const enum ngwt__MessageTypeList *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__MessageTypeList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__MessageTypeList); if (soap_out_ngwt__MessageTypeList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14519,7 +14519,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__ItemSourceList(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__ItemSourceList(struct soap *soap, const enum ngwt__ItemSourceList *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemSourceList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__ItemSourceList); if (soap_out_ngwt__ItemSourceList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14604,7 +14604,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__UUID(struct soap *soap, std::strin SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__UUID(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__UUID); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__UUID); if (soap_out_ngwt__UUID(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14696,7 +14696,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__uid(struct soap *soap, std::string SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__uid(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__uid); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__uid); if (soap_out_ngwt__uid(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14788,7 +14788,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_ngwt__View(struct soap *soap, std::strin SOAP_FMAC3 int SOAP_FMAC4 soap_put_ngwt__View(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__View); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_ngwt__View); if (soap_out_ngwt__View(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -14887,7 +14887,7 @@ void _ngwe__removeEventsResponse::soap_default(struct soap *soap) int _ngwe__removeEventsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15031,7 +15031,7 @@ void _ngwe__removeEventsRequest::soap_default(struct soap *soap) int _ngwe__removeEventsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15181,7 +15181,7 @@ void _ngwe__removeEventConfigurationResponse::soap_default(struct soap *soap) int _ngwe__removeEventConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventConfigurationResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventConfigurationResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15319,7 +15319,7 @@ void _ngwe__removeEventConfigurationRequest::soap_default(struct soap *soap) int _ngwe__removeEventConfigurationRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventConfigurationRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__removeEventConfigurationRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15460,7 +15460,7 @@ void _ngwe__getEventsResponse::soap_default(struct soap *soap) int _ngwe__getEventsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15619,7 +15619,7 @@ void _ngwe__getEventsRequest::soap_default(struct soap *soap) int _ngwe__getEventsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15796,7 +15796,7 @@ void _ngwe__getEventConfigurationResponse::soap_default(struct soap *soap) int _ngwe__getEventConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventConfigurationResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventConfigurationResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -15940,7 +15940,7 @@ void _ngwe__getEventConfigurationRequest::soap_default(struct soap *soap) int _ngwe__getEventConfigurationRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventConfigurationRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__getEventConfigurationRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16074,7 +16074,7 @@ void _ngwe__configureEventsResponse::soap_default(struct soap *soap) int _ngwe__configureEventsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__configureEventsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__configureEventsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16212,7 +16212,7 @@ void _ngwe__configureEventsRequest::soap_default(struct soap *soap) int _ngwe__configureEventsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__configureEventsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__configureEventsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16346,7 +16346,7 @@ void _ngwe__cleanEventConfigurationResponse::soap_default(struct soap *soap) int _ngwe__cleanEventConfigurationResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__cleanEventConfigurationResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__cleanEventConfigurationResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16483,7 +16483,7 @@ void _ngwe__cleanEventConfigurationRequest::soap_default(struct soap *soap) int _ngwe__cleanEventConfigurationRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__cleanEventConfigurationRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwe__cleanEventConfigurationRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16620,7 +16620,7 @@ void ngwe__Notify::soap_default(struct soap *soap) int ngwe__Notify::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__Notify); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__Notify); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16763,7 +16763,7 @@ void ngwe__EventTypeList::soap_default(struct soap *soap) int ngwe__EventTypeList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventTypeList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventTypeList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -16897,7 +16897,7 @@ void ngwe__EventsList::soap_default(struct soap *soap) int ngwe__EventsList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventsList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventsList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -17043,7 +17043,7 @@ void ngwe__Events::soap_default(struct soap *soap) int ngwe__Events::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__Events); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__Events); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -17222,7 +17222,7 @@ void ngwe__EventList::soap_default(struct soap *soap) int ngwe__EventList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -17365,7 +17365,7 @@ void ngwe__EventDefinition::soap_default(struct soap *soap) int ngwe__EventDefinition::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventDefinition); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__EventDefinition); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -17550,7 +17550,7 @@ void ngwe__Event::soap_default(struct soap *soap) int ngwe__Event::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__Event); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__Event); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -17736,7 +17736,7 @@ void ngwe__ContainerList::soap_default(struct soap *soap) int ngwe__ContainerList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__ContainerList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwe__ContainerList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -17882,7 +17882,7 @@ void _ngwm__updateVersionStatusResponse::soap_default(struct soap *soap) int _ngwm__updateVersionStatusResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__updateVersionStatusResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__updateVersionStatusResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18031,7 +18031,7 @@ void _ngwm__updateVersionStatusRequest::soap_default(struct soap *soap) int _ngwm__updateVersionStatusRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__updateVersionStatusRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__updateVersionStatusRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18181,7 +18181,7 @@ void _ngwm__uncompleteResponse::soap_default(struct soap *soap) int _ngwm__uncompleteResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__uncompleteResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__uncompleteResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18319,7 +18319,7 @@ void _ngwm__uncompleteRequest::soap_default(struct soap *soap) int _ngwm__uncompleteRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__uncompleteRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__uncompleteRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18457,7 +18457,7 @@ void _ngwm__unacceptResponse::soap_default(struct soap *soap) int _ngwm__unacceptResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__unacceptResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__unacceptResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18595,7 +18595,7 @@ void _ngwm__unacceptRequest::soap_default(struct soap *soap) int _ngwm__unacceptRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__unacceptRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__unacceptRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18736,7 +18736,7 @@ void _ngwm__startFreeBusySessionResponse::soap_default(struct soap *soap) int _ngwm__startFreeBusySessionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__startFreeBusySessionResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__startFreeBusySessionResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -18886,7 +18886,7 @@ void _ngwm__startFreeBusySessionRequest::soap_default(struct soap *soap) int _ngwm__startFreeBusySessionRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__startFreeBusySessionRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__startFreeBusySessionRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19036,7 +19036,7 @@ void _ngwm__setTimestampResponse::soap_default(struct soap *soap) int _ngwm__setTimestampResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__setTimestampResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__setTimestampResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19177,7 +19177,7 @@ void _ngwm__setTimestampRequest::soap_default(struct soap *soap) int _ngwm__setTimestampRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__setTimestampRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__setTimestampRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19319,7 +19319,7 @@ void _ngwm__sendItemResponse::soap_default(struct soap *soap) int _ngwm__sendItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__sendItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__sendItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19461,7 +19461,7 @@ void _ngwm__sendItemRequest::soap_default(struct soap *soap) int _ngwm__sendItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__sendItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__sendItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19599,7 +19599,7 @@ void _ngwm__retractResponse::soap_default(struct soap *soap) int _ngwm__retractResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__retractResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__retractResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19747,7 +19747,7 @@ void _ngwm__retractRequest::soap_default(struct soap *soap) int _ngwm__retractRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__retractRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__retractRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -19912,7 +19912,7 @@ void _ngwm__replyResponse::soap_default(struct soap *soap) int _ngwm__replyResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__replyResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__replyResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20059,7 +20059,7 @@ void _ngwm__replyRequest::soap_default(struct soap *soap) int _ngwm__replyRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__replyRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__replyRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20203,7 +20203,7 @@ void _ngwm__removeSignatureResponse::soap_default(struct soap *soap) int _ngwm__removeSignatureResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeSignatureResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeSignatureResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20346,7 +20346,7 @@ void _ngwm__removeSignatureRequest::soap_default(struct soap *soap) int _ngwm__removeSignatureRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeSignatureRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeSignatureRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20492,7 +20492,7 @@ void _ngwm__removeProxyUserResponse::soap_default(struct soap *soap) int _ngwm__removeProxyUserResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyUserResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyUserResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20630,7 +20630,7 @@ void _ngwm__removeProxyUserRequest::soap_default(struct soap *soap) int _ngwm__removeProxyUserRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyUserRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyUserRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20768,7 +20768,7 @@ void _ngwm__removeProxyAccessResponse::soap_default(struct soap *soap) int _ngwm__removeProxyAccessResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyAccessResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyAccessResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -20906,7 +20906,7 @@ void _ngwm__removeProxyAccessRequest::soap_default(struct soap *soap) int _ngwm__removeProxyAccessRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyAccessRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeProxyAccessRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21044,7 +21044,7 @@ void _ngwm__removeMembersResponse::soap_default(struct soap *soap) int _ngwm__removeMembersResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeMembersResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeMembersResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21185,7 +21185,7 @@ void _ngwm__removeMembersRequest::soap_default(struct soap *soap) int _ngwm__removeMembersRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeMembersRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeMembersRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21329,7 +21329,7 @@ void _ngwm__removeJunkEntryResponse::soap_default(struct soap *soap) int _ngwm__removeJunkEntryResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeJunkEntryResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeJunkEntryResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21467,7 +21467,7 @@ void _ngwm__removeJunkEntryRequest::soap_default(struct soap *soap) int _ngwm__removeJunkEntryRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeJunkEntryRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeJunkEntryRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21605,7 +21605,7 @@ void _ngwm__removeItemsResponse::soap_default(struct soap *soap) int _ngwm__removeItemsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21746,7 +21746,7 @@ void _ngwm__removeItemsRequest::soap_default(struct soap *soap) int _ngwm__removeItemsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -21890,7 +21890,7 @@ void _ngwm__removeItemResponse::soap_default(struct soap *soap) int _ngwm__removeItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22031,7 +22031,7 @@ void _ngwm__removeItemRequest::soap_default(struct soap *soap) int _ngwm__removeItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22175,7 +22175,7 @@ void _ngwm__removeCustomDefinitionResponse::soap_default(struct soap *soap) int _ngwm__removeCustomDefinitionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeCustomDefinitionResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeCustomDefinitionResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22317,7 +22317,7 @@ void _ngwm__removeCustomDefinitionRequest::soap_default(struct soap *soap) int _ngwm__removeCustomDefinitionRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeCustomDefinitionRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__removeCustomDefinitionRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22466,7 +22466,7 @@ void _ngwm__readCursorResponse::soap_default(struct soap *soap) int _ngwm__readCursorResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__readCursorResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__readCursorResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22620,7 +22620,7 @@ void _ngwm__readCursorRequest::soap_default(struct soap *soap) int _ngwm__readCursorRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__readCursorRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__readCursorRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22782,7 +22782,7 @@ void _ngwm__purgeResponse::soap_default(struct soap *soap) int _ngwm__purgeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -22920,7 +22920,7 @@ void _ngwm__purgeRequest::soap_default(struct soap *soap) int _ngwm__purgeRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23058,7 +23058,7 @@ void _ngwm__purgeDeletedItemsResponse::soap_default(struct soap *soap) int _ngwm__purgeDeletedItemsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeDeletedItemsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeDeletedItemsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23193,7 +23193,7 @@ void _ngwm__purgeDeletedItemsRequest::soap_default(struct soap *soap) int _ngwm__purgeDeletedItemsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeDeletedItemsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__purgeDeletedItemsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23320,7 +23320,7 @@ void _ngwm__positionCursorResponse::soap_default(struct soap *soap) int _ngwm__positionCursorResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__positionCursorResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__positionCursorResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23464,7 +23464,7 @@ void _ngwm__positionCursorRequest::soap_default(struct soap *soap) int _ngwm__positionCursorRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__positionCursorRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__positionCursorRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23620,7 +23620,7 @@ void _ngwm__moveItemResponse::soap_default(struct soap *soap) int _ngwm__moveItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__moveItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__moveItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23764,7 +23764,7 @@ void _ngwm__moveItemRequest::soap_default(struct soap *soap) int _ngwm__moveItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__moveItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__moveItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -23914,7 +23914,7 @@ void _ngwm__modifySignaturesResponse::soap_default(struct soap *soap) int _ngwm__modifySignaturesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySignaturesResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySignaturesResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24052,7 +24052,7 @@ void _ngwm__modifySignaturesRequest::soap_default(struct soap *soap) int _ngwm__modifySignaturesRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySignaturesRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySignaturesRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24190,7 +24190,7 @@ void _ngwm__modifySettingsResponse::soap_default(struct soap *soap) int _ngwm__modifySettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySettingsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySettingsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24328,7 +24328,7 @@ void _ngwm__modifySettingsRequest::soap_default(struct soap *soap) int _ngwm__modifySettingsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySettingsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifySettingsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24466,7 +24466,7 @@ void _ngwm__modifyProxyAccessResponse::soap_default(struct soap *soap) int _ngwm__modifyProxyAccessResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyProxyAccessResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyProxyAccessResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24607,7 +24607,7 @@ void _ngwm__modifyProxyAccessRequest::soap_default(struct soap *soap) int _ngwm__modifyProxyAccessRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyProxyAccessRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyProxyAccessRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24751,7 +24751,7 @@ void _ngwm__modifyPasswordResponse::soap_default(struct soap *soap) int _ngwm__modifyPasswordResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyPasswordResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyPasswordResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -24892,7 +24892,7 @@ void _ngwm__modifyPasswordRequest::soap_default(struct soap *soap) int _ngwm__modifyPasswordRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyPasswordRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyPasswordRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25032,7 +25032,7 @@ void _ngwm__modifyJunkMailSettingsResponse::soap_default(struct soap *soap) int _ngwm__modifyJunkMailSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkMailSettingsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkMailSettingsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25170,7 +25170,7 @@ void _ngwm__modifyJunkMailSettingsRequest::soap_default(struct soap *soap) int _ngwm__modifyJunkMailSettingsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkMailSettingsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkMailSettingsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25308,7 +25308,7 @@ void _ngwm__modifyJunkEntryResponse::soap_default(struct soap *soap) int _ngwm__modifyJunkEntryResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkEntryResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkEntryResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25446,7 +25446,7 @@ void _ngwm__modifyJunkEntryRequest::soap_default(struct soap *soap) int _ngwm__modifyJunkEntryRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkEntryRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyJunkEntryRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25588,7 +25588,7 @@ void _ngwm__modifyItemsResponse::soap_default(struct soap *soap) int _ngwm__modifyItemsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25733,7 +25733,7 @@ void _ngwm__modifyItemsRequest::soap_default(struct soap *soap) int _ngwm__modifyItemsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -25869,7 +25869,7 @@ void _ngwm__modifyItemResponse::soap_default(struct soap *soap) int _ngwm__modifyItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26025,7 +26025,7 @@ void _ngwm__modifyItemRequest::soap_default(struct soap *soap) int _ngwm__modifyItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__modifyItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26181,7 +26181,7 @@ void _ngwm__markUnReadResponse::soap_default(struct soap *soap) int _ngwm__markUnReadResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnReadResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnReadResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26319,7 +26319,7 @@ void _ngwm__markUnReadRequest::soap_default(struct soap *soap) int _ngwm__markUnReadRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnReadRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnReadRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26457,7 +26457,7 @@ void _ngwm__markUnPrivateResponse::soap_default(struct soap *soap) int _ngwm__markUnPrivateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnPrivateResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnPrivateResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26595,7 +26595,7 @@ void _ngwm__markUnPrivateRequest::soap_default(struct soap *soap) int _ngwm__markUnPrivateRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnPrivateRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markUnPrivateRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26733,7 +26733,7 @@ void _ngwm__markReadResponse::soap_default(struct soap *soap) int _ngwm__markReadResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markReadResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markReadResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -26871,7 +26871,7 @@ void _ngwm__markReadRequest::soap_default(struct soap *soap) int _ngwm__markReadRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markReadRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markReadRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27009,7 +27009,7 @@ void _ngwm__markPrivateResponse::soap_default(struct soap *soap) int _ngwm__markPrivateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markPrivateResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markPrivateResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27147,7 +27147,7 @@ void _ngwm__markPrivateRequest::soap_default(struct soap *soap) int _ngwm__markPrivateRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markPrivateRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__markPrivateRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27285,7 +27285,7 @@ void _ngwm__logoutResponse::soap_default(struct soap *soap) int _ngwm__logoutResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__logoutResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__logoutResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27420,7 +27420,7 @@ void _ngwm__logoutRequest::soap_default(struct soap *soap) int _ngwm__logoutRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__logoutRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__logoutRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27567,7 +27567,7 @@ void _ngwm__loginResponse::soap_default(struct soap *soap) int _ngwm__loginResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__loginResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__loginResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27754,7 +27754,7 @@ void _ngwm__loginRequest::soap_default(struct soap *soap) int _ngwm__loginRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__loginRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__loginRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -27913,7 +27913,7 @@ void _ngwm__getUserListResponse::soap_default(struct soap *soap) int _ngwm__getUserListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getUserListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getUserListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28060,7 +28060,7 @@ void _ngwm__getUserListRequest::soap_default(struct soap *soap) int _ngwm__getUserListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getUserListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getUserListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28203,7 +28203,7 @@ void _ngwm__getTimezoneListResponse::soap_default(struct soap *soap) int _ngwm__getTimezoneListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimezoneListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimezoneListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28344,7 +28344,7 @@ void _ngwm__getTimezoneListRequest::soap_default(struct soap *soap) int _ngwm__getTimezoneListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimezoneListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimezoneListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28477,7 +28477,7 @@ void _ngwm__getTimestampResponse::soap_default(struct soap *soap) int _ngwm__getTimestampResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimestampResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimestampResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28633,7 +28633,7 @@ void _ngwm__getTimestampRequest::soap_default(struct soap *soap) int _ngwm__getTimestampRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimestampRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getTimestampRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28782,7 +28782,7 @@ void _ngwm__getSignaturesResponse::soap_default(struct soap *soap) int _ngwm__getSignaturesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSignaturesResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSignaturesResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -28925,7 +28925,7 @@ void _ngwm__getSignaturesRequest::soap_default(struct soap *soap) int _ngwm__getSignaturesRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSignaturesRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSignaturesRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29062,7 +29062,7 @@ void _ngwm__getSettingsResponse::soap_default(struct soap *soap) int _ngwm__getSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSettingsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSettingsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29206,7 +29206,7 @@ void _ngwm__getSettingsRequest::soap_default(struct soap *soap) int _ngwm__getSettingsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSettingsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getSettingsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29343,7 +29343,7 @@ void _ngwm__getRuleListResponse::soap_default(struct soap *soap) int _ngwm__getRuleListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getRuleListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getRuleListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29484,7 +29484,7 @@ void _ngwm__getRuleListRequest::soap_default(struct soap *soap) int _ngwm__getRuleListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getRuleListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getRuleListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29614,7 +29614,7 @@ void _ngwm__getProxyListResponse::soap_default(struct soap *soap) int _ngwm__getProxyListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29755,7 +29755,7 @@ void _ngwm__getProxyListRequest::soap_default(struct soap *soap) int _ngwm__getProxyListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -29885,7 +29885,7 @@ void _ngwm__getProxyAccessListResponse::soap_default(struct soap *soap) int _ngwm__getProxyAccessListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyAccessListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyAccessListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30026,7 +30026,7 @@ void _ngwm__getProxyAccessListRequest::soap_default(struct soap *soap) int _ngwm__getProxyAccessListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyAccessListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getProxyAccessListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30159,7 +30159,7 @@ void _ngwm__getQuickMessagesResponse::soap_default(struct soap *soap) int _ngwm__getQuickMessagesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getQuickMessagesResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getQuickMessagesResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30325,7 +30325,7 @@ void _ngwm__getQuickMessagesRequest::soap_default(struct soap *soap) int _ngwm__getQuickMessagesRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getQuickMessagesRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getQuickMessagesRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30502,7 +30502,7 @@ void _ngwm__getLibraryListResponse::soap_default(struct soap *soap) int _ngwm__getLibraryListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30643,7 +30643,7 @@ void _ngwm__getLibraryListRequest::soap_default(struct soap *soap) int _ngwm__getLibraryListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30773,7 +30773,7 @@ void _ngwm__getLibraryItemResponse::soap_default(struct soap *soap) int _ngwm__getLibraryItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -30923,7 +30923,7 @@ void _ngwm__getLibraryItemRequest::soap_default(struct soap *soap) int _ngwm__getLibraryItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getLibraryItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31076,7 +31076,7 @@ void _ngwm__getJunkMailSettingsResponse::soap_default(struct soap *soap) int _ngwm__getJunkMailSettingsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkMailSettingsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkMailSettingsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31217,7 +31217,7 @@ void _ngwm__getJunkMailSettingsRequest::soap_default(struct soap *soap) int _ngwm__getJunkMailSettingsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkMailSettingsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkMailSettingsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31353,7 +31353,7 @@ void _ngwm__getJunkEntriesResponse::soap_default(struct soap *soap) int _ngwm__getJunkEntriesResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkEntriesResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkEntriesResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31509,7 +31509,7 @@ void _ngwm__getJunkEntriesRequest::soap_default(struct soap *soap) int _ngwm__getJunkEntriesRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkEntriesRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getJunkEntriesRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31646,7 +31646,7 @@ void _ngwm__getItemsResponse::soap_default(struct soap *soap) int _ngwm__getItemsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31801,7 +31801,7 @@ void _ngwm__getItemsRequest::soap_default(struct soap *soap) int _ngwm__getItemsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -31962,7 +31962,7 @@ void _ngwm__getItemResponse::soap_default(struct soap *soap) int _ngwm__getItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -32109,7 +32109,7 @@ void _ngwm__getItemRequest::soap_default(struct soap *soap) int _ngwm__getItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -32259,7 +32259,7 @@ void _ngwm__getFreeBusyResponse::soap_default(struct soap *soap) int _ngwm__getFreeBusyResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFreeBusyResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFreeBusyResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -32409,7 +32409,7 @@ void _ngwm__getFreeBusyRequest::soap_default(struct soap *soap) int _ngwm__getFreeBusyRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFreeBusyRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFreeBusyRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -32550,7 +32550,7 @@ void _ngwm__getFolderListResponse::soap_default(struct soap *soap) int _ngwm__getFolderListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -32703,7 +32703,7 @@ void _ngwm__getFolderListRequest::soap_default(struct soap *soap) int _ngwm__getFolderListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -32868,7 +32868,7 @@ void _ngwm__getFolderResponse::soap_default(struct soap *soap) int _ngwm__getFolderResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33024,7 +33024,7 @@ void _ngwm__getFolderRequest::soap_default(struct soap *soap) int _ngwm__getFolderRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getFolderRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33185,7 +33185,7 @@ void _ngwm__getDocumentTypeListResponse::soap_default(struct soap *soap) int _ngwm__getDocumentTypeListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDocumentTypeListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDocumentTypeListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33329,7 +33329,7 @@ void _ngwm__getDocumentTypeListRequest::soap_default(struct soap *soap) int _ngwm__getDocumentTypeListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDocumentTypeListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDocumentTypeListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33470,7 +33470,7 @@ void _ngwm__getDeltaInfoResponse::soap_default(struct soap *soap) int _ngwm__getDeltaInfoResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltaInfoResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltaInfoResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33614,7 +33614,7 @@ void _ngwm__getDeltaInfoRequest::soap_default(struct soap *soap) int _ngwm__getDeltaInfoRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltaInfoRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltaInfoRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33758,7 +33758,7 @@ void _ngwm__getDeltasResponse::soap_default(struct soap *soap) int _ngwm__getDeltasResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltasResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltasResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -33914,7 +33914,7 @@ void _ngwm__getDeltasRequest::soap_default(struct soap *soap) int _ngwm__getDeltasRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltasRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getDeltasRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34067,7 +34067,7 @@ void _ngwm__getCustomListResponse::soap_default(struct soap *soap) int _ngwm__getCustomListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCustomListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCustomListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34208,7 +34208,7 @@ void _ngwm__getCustomListRequest::soap_default(struct soap *soap) int _ngwm__getCustomListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCustomListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCustomListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34338,7 +34338,7 @@ void _ngwm__getCategoryListResponse::soap_default(struct soap *soap) int _ngwm__getCategoryListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCategoryListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCategoryListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34479,7 +34479,7 @@ void _ngwm__getCategoryListRequest::soap_default(struct soap *soap) int _ngwm__getCategoryListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCategoryListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getCategoryListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34609,7 +34609,7 @@ void _ngwm__getAttachmentResponse::soap_default(struct soap *soap) int _ngwm__getAttachmentResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAttachmentResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAttachmentResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34757,7 +34757,7 @@ void _ngwm__getAttachmentRequest::soap_default(struct soap *soap) int _ngwm__getAttachmentRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAttachmentRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAttachmentRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -34910,7 +34910,7 @@ void _ngwm__getAddressBookListResponse::soap_default(struct soap *soap) int _ngwm__getAddressBookListResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAddressBookListResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAddressBookListResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35051,7 +35051,7 @@ void _ngwm__getAddressBookListRequest::soap_default(struct soap *soap) int _ngwm__getAddressBookListRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAddressBookListRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__getAddressBookListRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35181,7 +35181,7 @@ void _ngwm__forwardResponse::soap_default(struct soap *soap) int _ngwm__forwardResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__forwardResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__forwardResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35330,7 +35330,7 @@ void _ngwm__forwardRequest::soap_default(struct soap *soap) int _ngwm__forwardRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__forwardRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__forwardRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35480,7 +35480,7 @@ void _ngwm__executeRuleResponse::soap_default(struct soap *soap) int _ngwm__executeRuleResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__executeRuleResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__executeRuleResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35618,7 +35618,7 @@ void _ngwm__executeRuleRequest::soap_default(struct soap *soap) int _ngwm__executeRuleRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__executeRuleRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__executeRuleRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35756,7 +35756,7 @@ void _ngwm__destroyCursorResponse::soap_default(struct soap *soap) int _ngwm__destroyCursorResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__destroyCursorResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__destroyCursorResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -35896,7 +35896,7 @@ void _ngwm__destroyCursorRequest::soap_default(struct soap *soap) int _ngwm__destroyCursorRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__destroyCursorRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__destroyCursorRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36040,7 +36040,7 @@ void _ngwm__delegateResponse::soap_default(struct soap *soap) int _ngwm__delegateResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__delegateResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__delegateResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36189,7 +36189,7 @@ void _ngwm__delegateRequest::soap_default(struct soap *soap) int _ngwm__delegateRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__delegateRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__delegateRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36351,7 +36351,7 @@ void _ngwm__declineResponse::soap_default(struct soap *soap) int _ngwm__declineResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__declineResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__declineResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36494,7 +36494,7 @@ void _ngwm__declineRequest::soap_default(struct soap *soap) int _ngwm__declineRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__declineRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__declineRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36644,7 +36644,7 @@ void _ngwm__createSignatureResponse::soap_default(struct soap *soap) int _ngwm__createSignatureResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createSignatureResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createSignatureResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36782,7 +36782,7 @@ void _ngwm__createSignatureRequest::soap_default(struct soap *soap) int _ngwm__createSignatureRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createSignatureRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createSignatureRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -36923,7 +36923,7 @@ void _ngwm__createProxyAccessResponse::soap_default(struct soap *soap) int _ngwm__createProxyAccessResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createProxyAccessResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createProxyAccessResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37067,7 +37067,7 @@ void _ngwm__createProxyAccessRequest::soap_default(struct soap *soap) int _ngwm__createProxyAccessRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createProxyAccessRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createProxyAccessRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37208,7 +37208,7 @@ void _ngwm__createJunkEntryResponse::soap_default(struct soap *soap) int _ngwm__createJunkEntryResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createJunkEntryResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createJunkEntryResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37352,7 +37352,7 @@ void _ngwm__createJunkEntryRequest::soap_default(struct soap *soap) int _ngwm__createJunkEntryRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createJunkEntryRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createJunkEntryRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37492,7 +37492,7 @@ void _ngwm__createItemsResponse::soap_default(struct soap *soap) int _ngwm__createItemsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37633,7 +37633,7 @@ void _ngwm__createItemsRequest::soap_default(struct soap *soap) int _ngwm__createItemsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37766,7 +37766,7 @@ void _ngwm__createItemResponse::soap_default(struct soap *soap) int _ngwm__createItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -37911,7 +37911,7 @@ void _ngwm__createItemRequest::soap_default(struct soap *soap) int _ngwm__createItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38058,7 +38058,7 @@ void _ngwm__createCursorResponse::soap_default(struct soap *soap) int _ngwm__createCursorResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createCursorResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createCursorResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38208,7 +38208,7 @@ void _ngwm__createCursorRequest::soap_default(struct soap *soap) int _ngwm__createCursorRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createCursorRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__createCursorRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38358,7 +38358,7 @@ void _ngwm__completeResponse::soap_default(struct soap *soap) int _ngwm__completeResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__completeResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__completeResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38496,7 +38496,7 @@ void _ngwm__completeRequest::soap_default(struct soap *soap) int _ngwm__completeRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__completeRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__completeRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38634,7 +38634,7 @@ void _ngwm__closeFreeBusySessionResponse::soap_default(struct soap *soap) int _ngwm__closeFreeBusySessionResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__closeFreeBusySessionResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__closeFreeBusySessionResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38771,7 +38771,7 @@ void _ngwm__closeFreeBusySessionRequest::soap_default(struct soap *soap) int _ngwm__closeFreeBusySessionRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__closeFreeBusySessionRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__closeFreeBusySessionRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -38909,7 +38909,7 @@ void _ngwm__addMembersResponse::soap_default(struct soap *soap) int _ngwm__addMembersResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addMembersResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addMembersResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39050,7 +39050,7 @@ void _ngwm__addMembersRequest::soap_default(struct soap *soap) int _ngwm__addMembersRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addMembersRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addMembersRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39194,7 +39194,7 @@ void _ngwm__addItemsResponse::soap_default(struct soap *soap) int _ngwm__addItemsResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemsResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemsResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39335,7 +39335,7 @@ void _ngwm__addItemsRequest::soap_default(struct soap *soap) int _ngwm__addItemsRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemsRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemsRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39479,7 +39479,7 @@ void _ngwm__addItemResponse::soap_default(struct soap *soap) int _ngwm__addItemResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39620,7 +39620,7 @@ void _ngwm__addItemRequest::soap_default(struct soap *soap) int _ngwm__addItemRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__addItemRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39767,7 +39767,7 @@ void _ngwm__acceptShareResponse::soap_default(struct soap *soap) int _ngwm__acceptShareResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptShareResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptShareResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -39920,7 +39920,7 @@ void _ngwm__acceptShareRequest::soap_default(struct soap *soap) int _ngwm__acceptShareRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptShareRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptShareRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -40076,7 +40076,7 @@ void _ngwm__acceptResponse::soap_default(struct soap *soap) int _ngwm__acceptResponse::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptResponse); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptResponse); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -40222,7 +40222,7 @@ void _ngwm__acceptRequest::soap_default(struct soap *soap) int _ngwm__acceptRequest::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptRequest); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE__ngwm__acceptRequest); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -40419,7 +40419,7 @@ void ngwt__VersionEvent::soap_default(struct soap *soap) int ngwt__VersionEvent::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__VersionEvent); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__VersionEvent); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -40703,7 +40703,7 @@ void ngwt__Version::soap_default(struct soap *soap) int ngwt__Version::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Version); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Version); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -40958,7 +40958,7 @@ void ngwt__UserList::soap_default(struct soap *soap) int ngwt__UserList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__UserList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__UserList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -41101,7 +41101,7 @@ void ngwt__UserInfo::soap_default(struct soap *soap) int ngwt__UserInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__UserInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__UserInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -41269,7 +41269,7 @@ void ngwt__TrustedApplication::soap_default(struct soap *soap) int ngwt__TrustedApplication::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TrustedApplication); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TrustedApplication); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -41485,7 +41485,7 @@ void ngwt__TransferFailedStatus::soap_default(struct soap *soap) int ngwt__TransferFailedStatus::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TransferFailedStatus); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TransferFailedStatus); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -41765,7 +41765,7 @@ void ngwt__TimezoneList::soap_default(struct soap *soap) int ngwt__TimezoneList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TimezoneList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TimezoneList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -41913,7 +41913,7 @@ void ngwt__TimezoneComponent::soap_default(struct soap *soap) int ngwt__TimezoneComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TimezoneComponent); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__TimezoneComponent); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -42096,7 +42096,7 @@ void ngwt__Timezone::soap_default(struct soap *soap) int ngwt__Timezone::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Timezone); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Timezone); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -42368,7 +42368,7 @@ void ngwt__Task::soap_default(struct soap *soap) int ngwt__Task::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Task); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Task); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -42798,7 +42798,7 @@ void ngwt__SystemFolder::soap_default(struct soap *soap) int ngwt__SystemFolder::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SystemFolder); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SystemFolder); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -43050,7 +43050,7 @@ void ngwt__StatusTracking::soap_default(struct soap *soap) int ngwt__StatusTracking::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__StatusTracking); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__StatusTracking); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -43176,7 +43176,7 @@ void ngwt__Status::soap_default(struct soap *soap) int ngwt__Status::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Status); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Status); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -43335,7 +43335,7 @@ void ngwt__SMimeOperation::soap_default(struct soap *soap) int ngwt__SMimeOperation::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SMimeOperation); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SMimeOperation); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -43478,7 +43478,7 @@ void ngwt__SignatureData::soap_default(struct soap *soap) int ngwt__SignatureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SignatureData); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SignatureData); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -43617,7 +43617,7 @@ void ngwt__Signatures::soap_default(struct soap *soap) int ngwt__Signatures::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Signatures); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Signatures); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -43758,7 +43758,7 @@ void ngwt__Signature::soap_default(struct soap *soap) int ngwt__Signature::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Signature); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Signature); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -44014,7 +44014,7 @@ void ngwt__SharedNotification::soap_default(struct soap *soap) int ngwt__SharedNotification::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SharedNotification); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SharedNotification); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -44360,7 +44360,7 @@ void ngwt__SharedFolderNotification::soap_default(struct soap *soap) int ngwt__SharedFolderNotification::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SharedFolderNotification); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SharedFolderNotification); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -44557,7 +44557,7 @@ void ngwt__SharedFolder::soap_default(struct soap *soap) int ngwt__SharedFolder::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SharedFolder); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SharedFolder); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -44796,7 +44796,7 @@ void ngwt__SettingsList::soap_default(struct soap *soap) int ngwt__SettingsList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SettingsList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SettingsList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -44927,7 +44927,7 @@ void ngwt__SettingsGroup::soap_default(struct soap *soap) int ngwt__SettingsGroup::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SettingsGroup); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SettingsGroup); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -45076,7 +45076,7 @@ void ngwt__Settings::soap_default(struct soap *soap) int ngwt__Settings::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Settings); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Settings); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -45222,7 +45222,7 @@ void ngwt__SendOptions::soap_default(struct soap *soap) int ngwt__SendOptions::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SendOptions); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SendOptions); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -45383,7 +45383,7 @@ void ngwt__SendOptionsRequestReply::soap_default(struct soap *soap) int ngwt__SendOptionsRequestReply::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SendOptionsRequestReply); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__SendOptionsRequestReply); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -45522,7 +45522,7 @@ void ngwt__RuleList::soap_default(struct soap *soap) int ngwt__RuleList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RuleList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RuleList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -45652,7 +45652,7 @@ void ngwt__RuleActionList::soap_default(struct soap *soap) int ngwt__RuleActionList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RuleActionList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RuleActionList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -45797,7 +45797,7 @@ void ngwt__RuleAction::soap_default(struct soap *soap) int ngwt__RuleAction::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RuleAction); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RuleAction); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -46009,7 +46009,7 @@ void ngwt__Rule::soap_default(struct soap *soap) int ngwt__Rule::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Rule); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Rule); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -46256,7 +46256,7 @@ void ngwt__Rights::soap_default(struct soap *soap) int ngwt__Rights::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Rights); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Rights); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -46421,7 +46421,7 @@ void ngwt__ReturnNotificationOptions::soap_default(struct soap *soap) int ngwt__ReturnNotificationOptions::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ReturnNotificationOptions); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ReturnNotificationOptions); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -46573,7 +46573,7 @@ void ngwt__ReturnNotification::soap_default(struct soap *soap) int ngwt__ReturnNotification::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ReturnNotification); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ReturnNotification); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -46787,7 +46787,7 @@ void ngwt__Resource::soap_default(struct soap *soap) int ngwt__Resource::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Resource); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Resource); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -47036,7 +47036,7 @@ void ngwt__ReferenceInfo::soap_default(struct soap *soap) int ngwt__ReferenceInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ReferenceInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ReferenceInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -47197,7 +47197,7 @@ void ngwt__RecurrenceRule::soap_default(struct soap *soap) int ngwt__RecurrenceRule::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecurrenceRule); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecurrenceRule); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -47372,7 +47372,7 @@ void ngwt__RecurrenceDateType::soap_default(struct soap *soap) int ngwt__RecurrenceDateType::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecurrenceDateType); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecurrenceDateType); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -47568,7 +47568,7 @@ void ngwt__RecipientStatus::soap_default(struct soap *soap) int ngwt__RecipientStatus::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecipientStatus); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecipientStatus); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -47867,7 +47867,7 @@ void ngwt__RecipientList::soap_default(struct soap *soap) int ngwt__RecipientList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecipientList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__RecipientList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -48014,7 +48014,7 @@ void ngwt__Recipient::soap_default(struct soap *soap) int ngwt__Recipient::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Recipient); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Recipient); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -48186,7 +48186,7 @@ void ngwt__QueryTarget::soap_default(struct soap *soap) int ngwt__QueryTarget::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__QueryTarget); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__QueryTarget); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -48366,7 +48366,7 @@ void ngwt__QueryFolder::soap_default(struct soap *soap) int ngwt__QueryFolder::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__QueryFolder); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__QueryFolder); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -48591,7 +48591,7 @@ void ngwt__Query::soap_default(struct soap *soap) int ngwt__Query::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Query); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Query); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -48734,7 +48734,7 @@ void ngwt__ProxyList::soap_default(struct soap *soap) int ngwt__ProxyList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProxyList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProxyList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -48874,7 +48874,7 @@ void ngwt__ProxyUser::soap_default(struct soap *soap) int ngwt__ProxyUser::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProxyUser); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProxyUser); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49032,7 +49032,7 @@ void ngwt__Proxy::soap_default(struct soap *soap) int ngwt__Proxy::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Proxy); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Proxy); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49181,7 +49181,7 @@ void ngwt__ProblemList::soap_default(struct soap *soap) int ngwt__ProblemList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProblemList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProblemList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49318,7 +49318,7 @@ void ngwt__ProblemEntry::soap_default(struct soap *soap) int ngwt__ProblemEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProblemEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ProblemEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49463,7 +49463,7 @@ void ngwt__PostalAddressList::soap_default(struct soap *soap) int ngwt__PostalAddressList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PostalAddressList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PostalAddressList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49613,7 +49613,7 @@ void ngwt__PostalAddress::soap_default(struct soap *soap) int ngwt__PostalAddress::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PostalAddress); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PostalAddress); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49789,7 +49789,7 @@ void ngwt__PlainText::soap_default(struct soap *soap) int ngwt__PlainText::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PlainText); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PlainText); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -49934,7 +49934,7 @@ void ngwt__PhoneNumber::soap_default(struct soap *soap) int ngwt__PhoneNumber::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneNumber); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneNumber); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -50145,7 +50145,7 @@ void ngwt__PhoneMessage::soap_default(struct soap *soap) int ngwt__PhoneMessage::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneMessage); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneMessage); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -50491,7 +50491,7 @@ void ngwt__PhoneList::soap_default(struct soap *soap) int ngwt__PhoneList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -50657,7 +50657,7 @@ void ngwt__PhoneFlags::soap_default(struct soap *soap) int ngwt__PhoneFlags::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneFlags); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PhoneFlags); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -50830,7 +50830,7 @@ void ngwt__PersonalInfo::soap_default(struct soap *soap) int ngwt__PersonalInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PersonalInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__PersonalInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -51029,7 +51029,7 @@ void ngwt__Organization::soap_default(struct soap *soap) int ngwt__Organization::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Organization); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Organization); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -51290,7 +51290,7 @@ void ngwt__OfficeInfo::soap_default(struct soap *soap) int ngwt__OfficeInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__OfficeInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__OfficeInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -51550,7 +51550,7 @@ void ngwt__Note::soap_default(struct soap *soap) int ngwt__Note::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Note); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Note); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -51914,7 +51914,7 @@ void ngwt__NameAndEmail::soap_default(struct soap *soap) int ngwt__NameAndEmail::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__NameAndEmail); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__NameAndEmail); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -52185,7 +52185,7 @@ void ngwt__MonthList::soap_default(struct soap *soap) int ngwt__MonthList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__MonthList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__MonthList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -52322,7 +52322,7 @@ void ngwt__ModifyItem::soap_default(struct soap *soap) int ngwt__ModifyItem::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ModifyItem); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ModifyItem); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -52477,7 +52477,7 @@ void ngwt__MessagePart::soap_default(struct soap *soap) int ngwt__MessagePart::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__MessagePart); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__MessagePart); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -52657,7 +52657,7 @@ void ngwt__MessageBody::soap_default(struct soap *soap) int ngwt__MessageBody::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__MessageBody); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__MessageBody); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -52878,7 +52878,7 @@ void ngwt__Mail::soap_default(struct soap *soap) int ngwt__Mail::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Mail); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Mail); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -53328,7 +53328,7 @@ void ngwt__LinkInfo::soap_default(struct soap *soap) int ngwt__LinkInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__LinkInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__LinkInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -53471,7 +53471,7 @@ void ngwt__LibraryList::soap_default(struct soap *soap) int ngwt__LibraryList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__LibraryList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__LibraryList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -53623,7 +53623,7 @@ void ngwt__Library::soap_default(struct soap *soap) int ngwt__Library::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Library); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Library); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -53798,7 +53798,7 @@ void ngwt__JunkHandlingList::soap_default(struct soap *soap) int ngwt__JunkHandlingList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__JunkHandlingList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__JunkHandlingList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -53949,7 +53949,7 @@ void ngwt__JunkEntry::soap_default(struct soap *soap) int ngwt__JunkEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__JunkEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__JunkEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -54153,7 +54153,7 @@ void ngwt__ItemStatus::soap_default(struct soap *soap) int ngwt__ItemStatus::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemStatus); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemStatus); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -54334,7 +54334,7 @@ void ngwt__Items::soap_default(struct soap *soap) int ngwt__Items::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Items); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Items); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -54464,7 +54464,7 @@ void ngwt__ItemRefList::soap_default(struct soap *soap) int ngwt__ItemRefList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemRefList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemRefList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -54596,7 +54596,7 @@ void ngwt__ItemRef::soap_default(struct soap *soap) int ngwt__ItemRef::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemRef); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemRef); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -54730,7 +54730,7 @@ void ngwt__ItemOptions::soap_default(struct soap *soap) int ngwt__ItemOptions::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemOptions); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemOptions); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -54889,7 +54889,7 @@ void ngwt__ItemList::soap_default(struct soap *soap) int ngwt__ItemList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -55050,7 +55050,7 @@ void ngwt__ItemChanges::soap_default(struct soap *soap) int ngwt__ItemChanges::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemChanges); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ItemChanges); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -55208,7 +55208,7 @@ void ngwt__Item::soap_default(struct soap *soap) int ngwt__Item::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Item); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Item); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -55851,7 +55851,7 @@ void ngwt__ImAddressList::soap_default(struct soap *soap) int ngwt__ImAddressList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ImAddressList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ImAddressList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -55988,7 +55988,7 @@ void ngwt__ImAddress::soap_default(struct soap *soap) int ngwt__ImAddress::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ImAddress); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ImAddress); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -56137,7 +56137,7 @@ void ngwt__Host::soap_default(struct soap *soap) int ngwt__Host::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Host); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Host); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -56276,7 +56276,7 @@ void ngwt__GroupMemberList::soap_default(struct soap *soap) int ngwt__GroupMemberList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__GroupMemberList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__GroupMemberList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -56420,7 +56420,7 @@ void ngwt__GroupMember::soap_default(struct soap *soap) int ngwt__GroupMember::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__GroupMember); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__GroupMember); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -56635,7 +56635,7 @@ void ngwt__Group::soap_default(struct soap *soap) int ngwt__Group::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Group); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Group); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -56878,7 +56878,7 @@ void ngwt__FullName::soap_default(struct soap *soap) int ngwt__FullName::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FullName); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FullName); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57051,7 +57051,7 @@ void ngwt__From::soap_default(struct soap *soap) int ngwt__From::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__From); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__From); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57206,7 +57206,7 @@ void ngwt__FreeBusyStats::soap_default(struct soap *soap) int ngwt__FreeBusyStats::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyStats); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyStats); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57355,7 +57355,7 @@ void ngwt__FreeBusyInfoList::soap_default(struct soap *soap) int ngwt__FreeBusyInfoList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyInfoList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyInfoList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57485,7 +57485,7 @@ void ngwt__FreeBusyUserList::soap_default(struct soap *soap) int ngwt__FreeBusyUserList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyUserList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyUserList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57625,7 +57625,7 @@ void ngwt__FreeBusyInfo::soap_default(struct soap *soap) int ngwt__FreeBusyInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57790,7 +57790,7 @@ void ngwt__FreeBusyBlock::soap_default(struct soap *soap) int ngwt__FreeBusyBlock::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyBlock); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyBlock); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -57945,7 +57945,7 @@ void ngwt__FreeBusyBlockList::soap_default(struct soap *soap) int ngwt__FreeBusyBlockList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyBlockList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FreeBusyBlockList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -58075,7 +58075,7 @@ void ngwt__FolderList::soap_default(struct soap *soap) int ngwt__FolderList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FolderList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FolderList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -58218,7 +58218,7 @@ void ngwt__FolderACLEntry::soap_default(struct soap *soap) int ngwt__FolderACLEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FolderACLEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FolderACLEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -58379,7 +58379,7 @@ void ngwt__FolderACL::soap_default(struct soap *soap) int ngwt__FolderACL::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FolderACL); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FolderACL); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -58546,7 +58546,7 @@ void ngwt__Folder::soap_default(struct soap *soap) int ngwt__Folder::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Folder); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Folder); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -58829,7 +58829,7 @@ void ngwt__FilterGroup::soap_default(struct soap *soap) int ngwt__FilterGroup::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FilterGroup); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FilterGroup); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -58982,7 +58982,7 @@ void ngwt__FilterEntry::soap_default(struct soap *soap) int ngwt__FilterEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FilterEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FilterEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -59143,7 +59143,7 @@ void ngwt__FilterElement::soap_default(struct soap *soap) int ngwt__FilterElement::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FilterElement); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__FilterElement); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -59317,7 +59317,7 @@ void ngwt__Filter::soap_default(struct soap *soap) int ngwt__Filter::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Filter); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Filter); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -59451,7 +59451,7 @@ void ngwt__EmailAddressList::soap_default(struct soap *soap) int ngwt__EmailAddressList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__EmailAddressList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__EmailAddressList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -59598,7 +59598,7 @@ void ngwt__DocumentTypeList::soap_default(struct soap *soap) int ngwt__DocumentTypeList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DocumentTypeList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DocumentTypeList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -59738,7 +59738,7 @@ void ngwt__DocumentType::soap_default(struct soap *soap) int ngwt__DocumentType::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DocumentType); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DocumentType); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -60018,7 +60018,7 @@ void ngwt__DocumentRef::soap_default(struct soap *soap) int ngwt__DocumentRef::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DocumentRef); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DocumentRef); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -60468,7 +60468,7 @@ void ngwt__Document::soap_default(struct soap *soap) int ngwt__Document::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Document); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Document); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -60729,7 +60729,7 @@ void ngwt__Distribution::soap_default(struct soap *soap) int ngwt__Distribution::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Distribution); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Distribution); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -60901,7 +60901,7 @@ void ngwt__DeltaInfo::soap_default(struct soap *soap) int ngwt__DeltaInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DeltaInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DeltaInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -61123,7 +61123,7 @@ void ngwt__DelegateeStatus::soap_default(struct soap *soap) int ngwt__DelegateeStatus::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DelegateeStatus); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DelegateeStatus); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -61405,7 +61405,7 @@ void ngwt__DelegatedStatus::soap_default(struct soap *soap) int ngwt__DelegatedStatus::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DelegatedStatus); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DelegatedStatus); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -61527,7 +61527,7 @@ void ngwt__DayOfYearWeekList::soap_default(struct soap *soap) int ngwt__DayOfYearWeekList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYearWeekList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYearWeekList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -61658,7 +61658,7 @@ void ngwt__DayOfYearWeek::soap_default(struct soap *soap) int ngwt__DayOfYearWeek::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYearWeek); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYearWeek); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -61775,7 +61775,7 @@ void ngwt__DayOfYearList::soap_default(struct soap *soap) int ngwt__DayOfYearList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYearList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfYearList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -61906,7 +61906,7 @@ void ngwt__DayOfWeek::soap_default(struct soap *soap) int ngwt__DayOfWeek::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfWeek); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfWeek); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -62023,7 +62023,7 @@ void ngwt__DayOfMonthList::soap_default(struct soap *soap) int ngwt__DayOfMonthList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfMonthList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__DayOfMonthList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -62153,7 +62153,7 @@ void ngwt__CustomList::soap_default(struct soap *soap) int ngwt__CustomList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CustomList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CustomList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -62291,7 +62291,7 @@ void ngwt__Custom::soap_default(struct soap *soap) int ngwt__Custom::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Custom); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Custom); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -62454,7 +62454,7 @@ void ngwt__ContainerRef::soap_default(struct soap *soap) int ngwt__ContainerRef::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ContainerRef); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ContainerRef); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -62587,7 +62587,7 @@ void ngwt__ContainerItem::soap_default(struct soap *soap) int ngwt__ContainerItem::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ContainerItem); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ContainerItem); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -63142,7 +63142,7 @@ void ngwt__ContactFolder::soap_default(struct soap *soap) int ngwt__ContactFolder::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ContactFolder); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__ContactFolder); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -63450,7 +63450,7 @@ void ngwt__Contact::soap_default(struct soap *soap) int ngwt__Contact::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Contact); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Contact); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -63721,7 +63721,7 @@ void ngwt__CommentStatus::soap_default(struct soap *soap) int ngwt__CommentStatus::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CommentStatus); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CommentStatus); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -63844,7 +63844,7 @@ void ngwt__CategoryRefList::soap_default(struct soap *soap) int ngwt__CategoryRefList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CategoryRefList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CategoryRefList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -63991,7 +63991,7 @@ void ngwt__CategoryList::soap_default(struct soap *soap) int ngwt__CategoryList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CategoryList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CategoryList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -64140,7 +64140,7 @@ void ngwt__Category::soap_default(struct soap *soap) int ngwt__Category::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Category); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Category); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -64415,7 +64415,7 @@ void ngwt__CalendarItem::soap_default(struct soap *soap) int ngwt__CalendarItem::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CalendarItem); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CalendarItem); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -64823,7 +64823,7 @@ void ngwt__CalendarFolderAttribute::soap_default(struct soap *soap) int ngwt__CalendarFolderAttribute::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CalendarFolderAttribute); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__CalendarFolderAttribute); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -65018,7 +65018,7 @@ void ngwt__BoxEntry::soap_default(struct soap *soap) int ngwt__BoxEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__BoxEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__BoxEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -65403,7 +65403,7 @@ void ngwt__Authentication::soap_default(struct soap *soap) int ngwt__Authentication::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Authentication); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Authentication); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -65605,7 +65605,7 @@ void ngwt__AttachmentItemInfo::soap_default(struct soap *soap) int ngwt__AttachmentItemInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AttachmentItemInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AttachmentItemInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -65780,7 +65780,7 @@ void ngwt__AttachmentInfo::soap_default(struct soap *soap) int ngwt__AttachmentInfo::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AttachmentInfo); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AttachmentInfo); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -65912,7 +65912,7 @@ void ngwt__AttachmentID::soap_default(struct soap *soap) int ngwt__AttachmentID::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AttachmentID); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AttachmentID); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -66162,7 +66162,7 @@ void ngwt__Appointment::soap_default(struct soap *soap) int ngwt__Appointment::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Appointment); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Appointment); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -66568,7 +66568,7 @@ void ngwt__Alarm::soap_default(struct soap *soap) int ngwt__Alarm::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Alarm); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__Alarm); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -66685,7 +66685,7 @@ void ngwt__AddressBookList::soap_default(struct soap *soap) int ngwt__AddressBookList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AddressBookList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AddressBookList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -66860,7 +66860,7 @@ void ngwt__AddressBookItem::soap_default(struct soap *soap) int ngwt__AddressBookItem::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AddressBookItem); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AddressBookItem); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -67175,7 +67175,7 @@ void ngwt__AddressBook::soap_default(struct soap *soap) int ngwt__AddressBook::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AddressBook); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AddressBook); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -67350,7 +67350,7 @@ void ngwt__AccessRightList::soap_default(struct soap *soap) int ngwt__AccessRightList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRightList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRightList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -67505,7 +67505,7 @@ void ngwt__AccessRightEntry::soap_default(struct soap *soap) int ngwt__AccessRightEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRightEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRightEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -67693,7 +67693,7 @@ void ngwt__AccessRightChanges::soap_default(struct soap *soap) int ngwt__AccessRightChanges::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRightChanges); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRightChanges); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -67842,7 +67842,7 @@ void ngwt__AccessRight::soap_default(struct soap *soap) int ngwt__AccessRight::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRight); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessRight); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -67991,7 +67991,7 @@ void ngwt__AccessMiscRight::soap_default(struct soap *soap) int ngwt__AccessMiscRight::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessMiscRight); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessMiscRight); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -68142,7 +68142,7 @@ void ngwt__AccessControlList::soap_default(struct soap *soap) int ngwt__AccessControlList::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessControlList); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessControlList); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -68282,7 +68282,7 @@ void ngwt__AccessControlListEntry::soap_default(struct soap *soap) int ngwt__AccessControlListEntry::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessControlListEntry); + int id = soap_embed(soap, (void*)this, NULL, 0, tag, SOAP_TYPE_ngwt__AccessControlListEntry); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -68449,7 +68449,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_xsd__language(struct soap *soap, std::st SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__language(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__language); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__language); if (soap_out_xsd__language(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -68541,7 +68541,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_xsd__duration(struct soap *soap, std::st SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__duration(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__duration); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__duration); if (soap_out_xsd__duration(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -68633,7 +68633,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_xsd__decimal(struct soap *soap, std::str SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__decimal(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__decimal); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__decimal); if (soap_out_xsd__decimal(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -68725,7 +68725,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_xsd__date(struct soap *soap, std::string SOAP_FMAC3 int SOAP_FMAC4 soap_put_xsd__date(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__date); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_xsd__date); if (soap_out_xsd__date(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -68816,7 +68816,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__string(struct soap *soap, std::stri SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__string(struct soap *soap, const std::string *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__string); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__string); if (soap_out_std__string(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -68913,7 +68913,7 @@ void xsd__base64Binary::soap_default(struct soap *soap) int xsd__base64Binary::soap_put(struct soap *soap, const char *tag, const char *type) const { - register int id = soap_embed(soap, (void*)this, (struct soap_array*)&this->__ptr, 1, tag, SOAP_TYPE_xsd__base64Binary); + int id = soap_embed(soap, (void*)this, (struct soap_array*)&this->__ptr, 1, tag, SOAP_TYPE_xsd__base64Binary); if (this->soap_out(soap, tag, id, type)) return soap->error; return soap_putindependent(soap); @@ -69055,7 +69055,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Fault(struct soap *soap, struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Fault(struct soap *soap, const struct SOAP_ENV__Fault *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Fault); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Fault); if (soap_out_SOAP_ENV__Fault(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -69185,7 +69185,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Detail(struct soap *soap, stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Detail(struct soap *soap, const struct SOAP_ENV__Detail *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Detail); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Detail); if (soap_out_SOAP_ENV__Detail(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -69274,7 +69274,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Code(struct soap *soap, struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Code(struct soap *soap, const struct SOAP_ENV__Code *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Code); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Code); if (soap_out_SOAP_ENV__Code(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -69359,7 +69359,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeEventsRequest(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeEventsRequest(struct soap *soap, const struct __ngw__removeEventsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeEventsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69417,7 +69417,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeEventConfigurationRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeEventConfigurationRequest(struct soap *soap, const struct __ngw__removeEventConfigurationRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeEventConfigurationRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69475,7 +69475,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getEventsRequest(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getEventsRequest(struct soap *soap, const struct __ngw__getEventsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getEventsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69533,7 +69533,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getEventConfigurationRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getEventConfigurationRequest(struct soap *soap, const struct __ngw__getEventConfigurationRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getEventConfigurationRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69591,7 +69591,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__configureEventsRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__configureEventsRequest(struct soap *soap, const struct __ngw__configureEventsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__configureEventsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69649,7 +69649,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__cleanEventConfigurationRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__cleanEventConfigurationRequest(struct soap *soap, const struct __ngw__cleanEventConfigurationRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__cleanEventConfigurationRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69707,7 +69707,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__updateVersionStatusRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__updateVersionStatusRequest(struct soap *soap, const struct __ngw__updateVersionStatusRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__updateVersionStatusRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69765,7 +69765,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__uncompleteRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__uncompleteRequest(struct soap *soap, const struct __ngw__uncompleteRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__uncompleteRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69823,7 +69823,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__unacceptRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__unacceptRequest(struct soap *soap, const struct __ngw__unacceptRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__unacceptRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69881,7 +69881,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__startFreeBusySessionRequest(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__startFreeBusySessionRequest(struct soap *soap, const struct __ngw__startFreeBusySessionRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__startFreeBusySessionRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69939,7 +69939,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__setTimestampRequest(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__setTimestampRequest(struct soap *soap, const struct __ngw__setTimestampRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__setTimestampRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -69997,7 +69997,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__sendItemRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__sendItemRequest(struct soap *soap, const struct __ngw__sendItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__sendItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70055,7 +70055,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__retractRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__retractRequest(struct soap *soap, const struct __ngw__retractRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__retractRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70113,7 +70113,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__replyRequest(struct soap *soap, s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__replyRequest(struct soap *soap, const struct __ngw__replyRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__replyRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70171,7 +70171,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeSignatureRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeSignatureRequest(struct soap *soap, const struct __ngw__removeSignatureRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeSignatureRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70229,7 +70229,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeProxyUserRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeProxyUserRequest(struct soap *soap, const struct __ngw__removeProxyUserRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeProxyUserRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70287,7 +70287,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeProxyAccessRequest(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeProxyAccessRequest(struct soap *soap, const struct __ngw__removeProxyAccessRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeProxyAccessRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70345,7 +70345,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeMembersRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeMembersRequest(struct soap *soap, const struct __ngw__removeMembersRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeMembersRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70403,7 +70403,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeJunkEntryRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeJunkEntryRequest(struct soap *soap, const struct __ngw__removeJunkEntryRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeJunkEntryRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70461,7 +70461,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeItemsRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeItemsRequest(struct soap *soap, const struct __ngw__removeItemsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeItemsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70519,7 +70519,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeItemRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeItemRequest(struct soap *soap, const struct __ngw__removeItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70577,7 +70577,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__removeCustomDefinitionRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__removeCustomDefinitionRequest(struct soap *soap, const struct __ngw__removeCustomDefinitionRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__removeCustomDefinitionRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70635,7 +70635,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__readCursorRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__readCursorRequest(struct soap *soap, const struct __ngw__readCursorRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__readCursorRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70693,7 +70693,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__purgeRequest(struct soap *soap, s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__purgeRequest(struct soap *soap, const struct __ngw__purgeRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__purgeRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70751,7 +70751,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__purgeDeletedItemsRequest(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__purgeDeletedItemsRequest(struct soap *soap, const struct __ngw__purgeDeletedItemsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__purgeDeletedItemsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70809,7 +70809,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__positionCursorRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__positionCursorRequest(struct soap *soap, const struct __ngw__positionCursorRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__positionCursorRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70867,7 +70867,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__moveItemRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__moveItemRequest(struct soap *soap, const struct __ngw__moveItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__moveItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70925,7 +70925,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifySignaturesRequest(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifySignaturesRequest(struct soap *soap, const struct __ngw__modifySignaturesRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifySignaturesRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -70983,7 +70983,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifySettingsRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifySettingsRequest(struct soap *soap, const struct __ngw__modifySettingsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifySettingsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71041,7 +71041,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifyProxyAccessRequest(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifyProxyAccessRequest(struct soap *soap, const struct __ngw__modifyProxyAccessRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifyProxyAccessRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71099,7 +71099,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifyPasswordRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifyPasswordRequest(struct soap *soap, const struct __ngw__modifyPasswordRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifyPasswordRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71157,7 +71157,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifyJunkMailSettingsRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifyJunkMailSettingsRequest(struct soap *soap, const struct __ngw__modifyJunkMailSettingsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifyJunkMailSettingsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71215,7 +71215,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifyJunkEntryRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifyJunkEntryRequest(struct soap *soap, const struct __ngw__modifyJunkEntryRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifyJunkEntryRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71273,7 +71273,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__modifyItemRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__modifyItemRequest(struct soap *soap, const struct __ngw__modifyItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__modifyItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71331,7 +71331,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__markUnReadRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__markUnReadRequest(struct soap *soap, const struct __ngw__markUnReadRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__markUnReadRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71389,7 +71389,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__markUnPrivateRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__markUnPrivateRequest(struct soap *soap, const struct __ngw__markUnPrivateRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__markUnPrivateRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71447,7 +71447,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__markReadRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__markReadRequest(struct soap *soap, const struct __ngw__markReadRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__markReadRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71505,7 +71505,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__markPrivateRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__markPrivateRequest(struct soap *soap, const struct __ngw__markPrivateRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__markPrivateRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71563,7 +71563,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__logoutRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__logoutRequest(struct soap *soap, const struct __ngw__logoutRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__logoutRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71621,7 +71621,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__loginRequest(struct soap *soap, s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__loginRequest(struct soap *soap, const struct __ngw__loginRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__loginRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71679,7 +71679,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getUserListRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getUserListRequest(struct soap *soap, const struct __ngw__getUserListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getUserListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71737,7 +71737,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getTimezoneListRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getTimezoneListRequest(struct soap *soap, const struct __ngw__getTimezoneListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getTimezoneListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71795,7 +71795,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getTimestampRequest(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getTimestampRequest(struct soap *soap, const struct __ngw__getTimestampRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getTimestampRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71853,7 +71853,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getSignaturesRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getSignaturesRequest(struct soap *soap, const struct __ngw__getSignaturesRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getSignaturesRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71911,7 +71911,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getSettingsRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getSettingsRequest(struct soap *soap, const struct __ngw__getSettingsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getSettingsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -71969,7 +71969,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getRuleListRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getRuleListRequest(struct soap *soap, const struct __ngw__getRuleListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getRuleListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72027,7 +72027,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getProxyListRequest(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getProxyListRequest(struct soap *soap, const struct __ngw__getProxyListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getProxyListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72085,7 +72085,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getProxyAccessListRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getProxyAccessListRequest(struct soap *soap, const struct __ngw__getProxyAccessListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getProxyAccessListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72143,7 +72143,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getQuickMessagesRequest(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getQuickMessagesRequest(struct soap *soap, const struct __ngw__getQuickMessagesRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getQuickMessagesRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72201,7 +72201,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getLibraryListRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getLibraryListRequest(struct soap *soap, const struct __ngw__getLibraryListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getLibraryListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72259,7 +72259,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getLibraryItemRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getLibraryItemRequest(struct soap *soap, const struct __ngw__getLibraryItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getLibraryItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72317,7 +72317,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getJunkMailSettingsRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getJunkMailSettingsRequest(struct soap *soap, const struct __ngw__getJunkMailSettingsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getJunkMailSettingsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72375,7 +72375,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getJunkEntriesRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getJunkEntriesRequest(struct soap *soap, const struct __ngw__getJunkEntriesRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getJunkEntriesRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72433,7 +72433,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getItemsRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getItemsRequest(struct soap *soap, const struct __ngw__getItemsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getItemsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72491,7 +72491,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getItemRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getItemRequest(struct soap *soap, const struct __ngw__getItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72549,7 +72549,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getFreeBusyRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getFreeBusyRequest(struct soap *soap, const struct __ngw__getFreeBusyRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getFreeBusyRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72607,7 +72607,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getFolderListRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getFolderListRequest(struct soap *soap, const struct __ngw__getFolderListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getFolderListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72665,7 +72665,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getFolderRequest(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getFolderRequest(struct soap *soap, const struct __ngw__getFolderRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getFolderRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72723,7 +72723,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getDocumentTypeListRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getDocumentTypeListRequest(struct soap *soap, const struct __ngw__getDocumentTypeListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getDocumentTypeListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72781,7 +72781,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getDeltaInfoRequest(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getDeltaInfoRequest(struct soap *soap, const struct __ngw__getDeltaInfoRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getDeltaInfoRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72839,7 +72839,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getDeltasRequest(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getDeltasRequest(struct soap *soap, const struct __ngw__getDeltasRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getDeltasRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72897,7 +72897,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getCustomListRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getCustomListRequest(struct soap *soap, const struct __ngw__getCustomListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getCustomListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -72955,7 +72955,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getCategoryListRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getCategoryListRequest(struct soap *soap, const struct __ngw__getCategoryListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getCategoryListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73013,7 +73013,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getAttachmentRequestMessage(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getAttachmentRequestMessage(struct soap *soap, const struct __ngw__getAttachmentRequestMessage *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getAttachmentRequestMessage(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73071,7 +73071,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__getAddressBookListRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__getAddressBookListRequest(struct soap *soap, const struct __ngw__getAddressBookListRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__getAddressBookListRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73129,7 +73129,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__forwardRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__forwardRequest(struct soap *soap, const struct __ngw__forwardRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__forwardRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73187,7 +73187,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__executeRuleRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__executeRuleRequest(struct soap *soap, const struct __ngw__executeRuleRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__executeRuleRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73245,7 +73245,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__destroyCursorRequest(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__destroyCursorRequest(struct soap *soap, const struct __ngw__destroyCursorRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__destroyCursorRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73303,7 +73303,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__delegateRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__delegateRequest(struct soap *soap, const struct __ngw__delegateRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__delegateRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73361,7 +73361,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__declineRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__declineRequest(struct soap *soap, const struct __ngw__declineRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__declineRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73419,7 +73419,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__createSignatureRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__createSignatureRequest(struct soap *soap, const struct __ngw__createSignatureRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__createSignatureRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73477,7 +73477,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__createProxyAccessRequest(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__createProxyAccessRequest(struct soap *soap, const struct __ngw__createProxyAccessRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__createProxyAccessRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73535,7 +73535,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__createJunkEntryRequest(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__createJunkEntryRequest(struct soap *soap, const struct __ngw__createJunkEntryRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__createJunkEntryRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73593,7 +73593,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__createItemsRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__createItemsRequest(struct soap *soap, const struct __ngw__createItemsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__createItemsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73651,7 +73651,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__createItemRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__createItemRequest(struct soap *soap, const struct __ngw__createItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__createItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73709,7 +73709,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__createCursorRequest(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__createCursorRequest(struct soap *soap, const struct __ngw__createCursorRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__createCursorRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73767,7 +73767,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__completeRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__completeRequest(struct soap *soap, const struct __ngw__completeRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__completeRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73825,7 +73825,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__closeFreeBusySessionRequest(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__closeFreeBusySessionRequest(struct soap *soap, const struct __ngw__closeFreeBusySessionRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__closeFreeBusySessionRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73883,7 +73883,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__addMembersRequest(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__addMembersRequest(struct soap *soap, const struct __ngw__addMembersRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__addMembersRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73941,7 +73941,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__addItemsRequest(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__addItemsRequest(struct soap *soap, const struct __ngw__addItemsRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__addItemsRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -73999,7 +73999,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__addItemRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__addItemRequest(struct soap *soap, const struct __ngw__addItemRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__addItemRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -74057,7 +74057,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__acceptShareRequest(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__acceptShareRequest(struct soap *soap, const struct __ngw__acceptShareRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__acceptShareRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -74115,7 +74115,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default___ngw__acceptRequest(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put___ngw__acceptRequest(struct soap *soap, const struct __ngw__acceptRequest *a, const char *tag, const char *type) { - register int id = 0; + int id = 0; if (soap_out___ngw__acceptRequest(soap, tag, id, a, type)) return soap->error; return SOAP_OK; @@ -74177,7 +74177,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Header(struct soap *soap, stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Header(struct soap *soap, const struct SOAP_ENV__Header *a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Header); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_SOAP_ENV__Header); if (soap_out_SOAP_ENV__Header(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74294,7 +74294,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Detail(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToSOAP_ENV__Detail); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToSOAP_ENV__Detail); if (soap_out_PointerToSOAP_ENV__Detail(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74348,7 +74348,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Code(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToSOAP_ENV__Code); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToSOAP_ENV__Code); if (soap_out_PointerToSOAP_ENV__Code(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74400,7 +74400,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__removeEventsResponse(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__removeEventsResponse(struct soap *soap, _ngwe__removeEventsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventsResponse); if (soap_out_PointerTo_ngwe__removeEventsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74453,7 +74453,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__removeEventsRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__removeEventsRequest(struct soap *soap, _ngwe__removeEventsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventsRequest); if (soap_out_PointerTo_ngwe__removeEventsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74506,7 +74506,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__removeEventConfigurati SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__removeEventConfigurationResponse(struct soap *soap, _ngwe__removeEventConfigurationResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventConfigurationResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventConfigurationResponse); if (soap_out_PointerTo_ngwe__removeEventConfigurationResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74559,7 +74559,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__removeEventConfigurati SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__removeEventConfigurationRequest(struct soap *soap, _ngwe__removeEventConfigurationRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventConfigurationRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__removeEventConfigurationRequest); if (soap_out_PointerTo_ngwe__removeEventConfigurationRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74612,7 +74612,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__getEventsResponse(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__getEventsResponse(struct soap *soap, _ngwe__getEventsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventsResponse); if (soap_out_PointerTo_ngwe__getEventsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74665,7 +74665,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__getEventsRequest(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__getEventsRequest(struct soap *soap, _ngwe__getEventsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventsRequest); if (soap_out_PointerTo_ngwe__getEventsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74718,7 +74718,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__getEventConfigurationR SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__getEventConfigurationResponse(struct soap *soap, _ngwe__getEventConfigurationResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventConfigurationResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventConfigurationResponse); if (soap_out_PointerTo_ngwe__getEventConfigurationResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74771,7 +74771,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__getEventConfigurationR SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__getEventConfigurationRequest(struct soap *soap, _ngwe__getEventConfigurationRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventConfigurationRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__getEventConfigurationRequest); if (soap_out_PointerTo_ngwe__getEventConfigurationRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74824,7 +74824,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__configureEventsRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__configureEventsResponse(struct soap *soap, _ngwe__configureEventsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__configureEventsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__configureEventsResponse); if (soap_out_PointerTo_ngwe__configureEventsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74877,7 +74877,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__configureEventsRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__configureEventsRequest(struct soap *soap, _ngwe__configureEventsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__configureEventsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__configureEventsRequest); if (soap_out_PointerTo_ngwe__configureEventsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74930,7 +74930,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__cleanEventConfiguratio SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__cleanEventConfigurationResponse(struct soap *soap, _ngwe__cleanEventConfigurationResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__cleanEventConfigurationResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__cleanEventConfigurationResponse); if (soap_out_PointerTo_ngwe__cleanEventConfigurationResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -74983,7 +74983,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwe__cleanEventConfiguratio SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwe__cleanEventConfigurationRequest(struct soap *soap, _ngwe__cleanEventConfigurationRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__cleanEventConfigurationRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwe__cleanEventConfigurationRequest); if (soap_out_PointerTo_ngwe__cleanEventConfigurationRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75036,7 +75036,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__updateVersionStatusRes SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__updateVersionStatusResponse(struct soap *soap, _ngwm__updateVersionStatusResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__updateVersionStatusResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__updateVersionStatusResponse); if (soap_out_PointerTo_ngwm__updateVersionStatusResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75089,7 +75089,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__updateVersionStatusReq SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__updateVersionStatusRequest(struct soap *soap, _ngwm__updateVersionStatusRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__updateVersionStatusRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__updateVersionStatusRequest); if (soap_out_PointerTo_ngwm__updateVersionStatusRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75142,7 +75142,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__uncompleteResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__uncompleteResponse(struct soap *soap, _ngwm__uncompleteResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__uncompleteResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__uncompleteResponse); if (soap_out_PointerTo_ngwm__uncompleteResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75195,7 +75195,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__uncompleteRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__uncompleteRequest(struct soap *soap, _ngwm__uncompleteRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__uncompleteRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__uncompleteRequest); if (soap_out_PointerTo_ngwm__uncompleteRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75248,7 +75248,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__unacceptResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__unacceptResponse(struct soap *soap, _ngwm__unacceptResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__unacceptResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__unacceptResponse); if (soap_out_PointerTo_ngwm__unacceptResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75301,7 +75301,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__unacceptRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__unacceptRequest(struct soap *soap, _ngwm__unacceptRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__unacceptRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__unacceptRequest); if (soap_out_PointerTo_ngwm__unacceptRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75354,7 +75354,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__startFreeBusySessionRe SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__startFreeBusySessionResponse(struct soap *soap, _ngwm__startFreeBusySessionResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__startFreeBusySessionResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__startFreeBusySessionResponse); if (soap_out_PointerTo_ngwm__startFreeBusySessionResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75407,7 +75407,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__startFreeBusySessionRe SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__startFreeBusySessionRequest(struct soap *soap, _ngwm__startFreeBusySessionRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__startFreeBusySessionRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__startFreeBusySessionRequest); if (soap_out_PointerTo_ngwm__startFreeBusySessionRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75460,7 +75460,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__setTimestampResponse(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__setTimestampResponse(struct soap *soap, _ngwm__setTimestampResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__setTimestampResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__setTimestampResponse); if (soap_out_PointerTo_ngwm__setTimestampResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75513,7 +75513,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__setTimestampRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__setTimestampRequest(struct soap *soap, _ngwm__setTimestampRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__setTimestampRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__setTimestampRequest); if (soap_out_PointerTo_ngwm__setTimestampRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75566,7 +75566,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__sendItemResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__sendItemResponse(struct soap *soap, _ngwm__sendItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__sendItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__sendItemResponse); if (soap_out_PointerTo_ngwm__sendItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75619,7 +75619,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__sendItemRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__sendItemRequest(struct soap *soap, _ngwm__sendItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__sendItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__sendItemRequest); if (soap_out_PointerTo_ngwm__sendItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75672,7 +75672,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__retractResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__retractResponse(struct soap *soap, _ngwm__retractResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__retractResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__retractResponse); if (soap_out_PointerTo_ngwm__retractResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75725,7 +75725,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__retractRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__retractRequest(struct soap *soap, _ngwm__retractRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__retractRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__retractRequest); if (soap_out_PointerTo_ngwm__retractRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75778,7 +75778,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__replyResponse(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__replyResponse(struct soap *soap, _ngwm__replyResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__replyResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__replyResponse); if (soap_out_PointerTo_ngwm__replyResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75831,7 +75831,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__replyRequest(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__replyRequest(struct soap *soap, _ngwm__replyRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__replyRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__replyRequest); if (soap_out_PointerTo_ngwm__replyRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75884,7 +75884,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeSignatureRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeSignatureResponse(struct soap *soap, _ngwm__removeSignatureResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeSignatureResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeSignatureResponse); if (soap_out_PointerTo_ngwm__removeSignatureResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75937,7 +75937,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeSignatureRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeSignatureRequest(struct soap *soap, _ngwm__removeSignatureRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeSignatureRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeSignatureRequest); if (soap_out_PointerTo_ngwm__removeSignatureRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -75990,7 +75990,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeProxyUserRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeProxyUserResponse(struct soap *soap, _ngwm__removeProxyUserResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyUserResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyUserResponse); if (soap_out_PointerTo_ngwm__removeProxyUserResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76043,7 +76043,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeProxyUserRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeProxyUserRequest(struct soap *soap, _ngwm__removeProxyUserRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyUserRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyUserRequest); if (soap_out_PointerTo_ngwm__removeProxyUserRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76096,7 +76096,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeProxyAccessRespo SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeProxyAccessResponse(struct soap *soap, _ngwm__removeProxyAccessResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyAccessResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyAccessResponse); if (soap_out_PointerTo_ngwm__removeProxyAccessResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76149,7 +76149,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeProxyAccessReque SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeProxyAccessRequest(struct soap *soap, _ngwm__removeProxyAccessRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyAccessRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeProxyAccessRequest); if (soap_out_PointerTo_ngwm__removeProxyAccessRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76202,7 +76202,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeMembersResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeMembersResponse(struct soap *soap, _ngwm__removeMembersResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeMembersResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeMembersResponse); if (soap_out_PointerTo_ngwm__removeMembersResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76255,7 +76255,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeMembersRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeMembersRequest(struct soap *soap, _ngwm__removeMembersRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeMembersRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeMembersRequest); if (soap_out_PointerTo_ngwm__removeMembersRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76308,7 +76308,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeJunkEntryRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeJunkEntryResponse(struct soap *soap, _ngwm__removeJunkEntryResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeJunkEntryResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeJunkEntryResponse); if (soap_out_PointerTo_ngwm__removeJunkEntryResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76361,7 +76361,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeJunkEntryRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeJunkEntryRequest(struct soap *soap, _ngwm__removeJunkEntryRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeJunkEntryRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeJunkEntryRequest); if (soap_out_PointerTo_ngwm__removeJunkEntryRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76414,7 +76414,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeItemsResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeItemsResponse(struct soap *soap, _ngwm__removeItemsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemsResponse); if (soap_out_PointerTo_ngwm__removeItemsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76467,7 +76467,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeItemsRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeItemsRequest(struct soap *soap, _ngwm__removeItemsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemsRequest); if (soap_out_PointerTo_ngwm__removeItemsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76520,7 +76520,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeItemResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeItemResponse(struct soap *soap, _ngwm__removeItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemResponse); if (soap_out_PointerTo_ngwm__removeItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76573,7 +76573,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeItemRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeItemRequest(struct soap *soap, _ngwm__removeItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeItemRequest); if (soap_out_PointerTo_ngwm__removeItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76626,7 +76626,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeCustomDefinition SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeCustomDefinitionResponse(struct soap *soap, _ngwm__removeCustomDefinitionResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeCustomDefinitionResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeCustomDefinitionResponse); if (soap_out_PointerTo_ngwm__removeCustomDefinitionResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76679,7 +76679,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__removeCustomDefinition SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__removeCustomDefinitionRequest(struct soap *soap, _ngwm__removeCustomDefinitionRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeCustomDefinitionRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__removeCustomDefinitionRequest); if (soap_out_PointerTo_ngwm__removeCustomDefinitionRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76732,7 +76732,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__readCursorResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__readCursorResponse(struct soap *soap, _ngwm__readCursorResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__readCursorResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__readCursorResponse); if (soap_out_PointerTo_ngwm__readCursorResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76785,7 +76785,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__readCursorRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__readCursorRequest(struct soap *soap, _ngwm__readCursorRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__readCursorRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__readCursorRequest); if (soap_out_PointerTo_ngwm__readCursorRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76838,7 +76838,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__purgeResponse(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__purgeResponse(struct soap *soap, _ngwm__purgeResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeResponse); if (soap_out_PointerTo_ngwm__purgeResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76891,7 +76891,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__purgeRequest(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__purgeRequest(struct soap *soap, _ngwm__purgeRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeRequest); if (soap_out_PointerTo_ngwm__purgeRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76944,7 +76944,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__purgeDeletedItemsRespo SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__purgeDeletedItemsResponse(struct soap *soap, _ngwm__purgeDeletedItemsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeDeletedItemsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeDeletedItemsResponse); if (soap_out_PointerTo_ngwm__purgeDeletedItemsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -76997,7 +76997,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__purgeDeletedItemsReque SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__purgeDeletedItemsRequest(struct soap *soap, _ngwm__purgeDeletedItemsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeDeletedItemsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__purgeDeletedItemsRequest); if (soap_out_PointerTo_ngwm__purgeDeletedItemsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77050,7 +77050,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__positionCursorResponse SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__positionCursorResponse(struct soap *soap, _ngwm__positionCursorResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__positionCursorResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__positionCursorResponse); if (soap_out_PointerTo_ngwm__positionCursorResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77103,7 +77103,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__positionCursorRequest( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__positionCursorRequest(struct soap *soap, _ngwm__positionCursorRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__positionCursorRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__positionCursorRequest); if (soap_out_PointerTo_ngwm__positionCursorRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77156,7 +77156,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__moveItemResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__moveItemResponse(struct soap *soap, _ngwm__moveItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__moveItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__moveItemResponse); if (soap_out_PointerTo_ngwm__moveItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77209,7 +77209,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__moveItemRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__moveItemRequest(struct soap *soap, _ngwm__moveItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__moveItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__moveItemRequest); if (soap_out_PointerTo_ngwm__moveItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77262,7 +77262,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifySignaturesRespon SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifySignaturesResponse(struct soap *soap, _ngwm__modifySignaturesResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySignaturesResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySignaturesResponse); if (soap_out_PointerTo_ngwm__modifySignaturesResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77315,7 +77315,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifySignaturesReques SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifySignaturesRequest(struct soap *soap, _ngwm__modifySignaturesRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySignaturesRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySignaturesRequest); if (soap_out_PointerTo_ngwm__modifySignaturesRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77368,7 +77368,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifySettingsResponse SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifySettingsResponse(struct soap *soap, _ngwm__modifySettingsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySettingsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySettingsResponse); if (soap_out_PointerTo_ngwm__modifySettingsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77421,7 +77421,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifySettingsRequest( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifySettingsRequest(struct soap *soap, _ngwm__modifySettingsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySettingsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifySettingsRequest); if (soap_out_PointerTo_ngwm__modifySettingsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77474,7 +77474,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyProxyAccessRespo SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyProxyAccessResponse(struct soap *soap, _ngwm__modifyProxyAccessResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyProxyAccessResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyProxyAccessResponse); if (soap_out_PointerTo_ngwm__modifyProxyAccessResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77527,7 +77527,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyProxyAccessReque SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyProxyAccessRequest(struct soap *soap, _ngwm__modifyProxyAccessRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyProxyAccessRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyProxyAccessRequest); if (soap_out_PointerTo_ngwm__modifyProxyAccessRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77580,7 +77580,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyPasswordResponse SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyPasswordResponse(struct soap *soap, _ngwm__modifyPasswordResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyPasswordResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyPasswordResponse); if (soap_out_PointerTo_ngwm__modifyPasswordResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77633,7 +77633,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyPasswordRequest( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyPasswordRequest(struct soap *soap, _ngwm__modifyPasswordRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyPasswordRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyPasswordRequest); if (soap_out_PointerTo_ngwm__modifyPasswordRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77686,7 +77686,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyJunkMailSettings SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyJunkMailSettingsResponse(struct soap *soap, _ngwm__modifyJunkMailSettingsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkMailSettingsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkMailSettingsResponse); if (soap_out_PointerTo_ngwm__modifyJunkMailSettingsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77739,7 +77739,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyJunkMailSettings SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyJunkMailSettingsRequest(struct soap *soap, _ngwm__modifyJunkMailSettingsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkMailSettingsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkMailSettingsRequest); if (soap_out_PointerTo_ngwm__modifyJunkMailSettingsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77792,7 +77792,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyJunkEntryRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyJunkEntryResponse(struct soap *soap, _ngwm__modifyJunkEntryResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkEntryResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkEntryResponse); if (soap_out_PointerTo_ngwm__modifyJunkEntryResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77845,7 +77845,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyJunkEntryRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyJunkEntryRequest(struct soap *soap, _ngwm__modifyJunkEntryRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkEntryRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyJunkEntryRequest); if (soap_out_PointerTo_ngwm__modifyJunkEntryRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77898,7 +77898,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyItemResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyItemResponse(struct soap *soap, _ngwm__modifyItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyItemResponse); if (soap_out_PointerTo_ngwm__modifyItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -77951,7 +77951,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__modifyItemRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__modifyItemRequest(struct soap *soap, _ngwm__modifyItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__modifyItemRequest); if (soap_out_PointerTo_ngwm__modifyItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78004,7 +78004,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markUnReadResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markUnReadResponse(struct soap *soap, _ngwm__markUnReadResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnReadResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnReadResponse); if (soap_out_PointerTo_ngwm__markUnReadResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78057,7 +78057,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markUnReadRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markUnReadRequest(struct soap *soap, _ngwm__markUnReadRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnReadRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnReadRequest); if (soap_out_PointerTo_ngwm__markUnReadRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78110,7 +78110,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markUnPrivateResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markUnPrivateResponse(struct soap *soap, _ngwm__markUnPrivateResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnPrivateResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnPrivateResponse); if (soap_out_PointerTo_ngwm__markUnPrivateResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78163,7 +78163,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markUnPrivateRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markUnPrivateRequest(struct soap *soap, _ngwm__markUnPrivateRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnPrivateRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markUnPrivateRequest); if (soap_out_PointerTo_ngwm__markUnPrivateRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78216,7 +78216,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markReadResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markReadResponse(struct soap *soap, _ngwm__markReadResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markReadResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markReadResponse); if (soap_out_PointerTo_ngwm__markReadResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78269,7 +78269,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markReadRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markReadRequest(struct soap *soap, _ngwm__markReadRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markReadRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markReadRequest); if (soap_out_PointerTo_ngwm__markReadRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78322,7 +78322,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markPrivateResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markPrivateResponse(struct soap *soap, _ngwm__markPrivateResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markPrivateResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markPrivateResponse); if (soap_out_PointerTo_ngwm__markPrivateResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78375,7 +78375,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__markPrivateRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__markPrivateRequest(struct soap *soap, _ngwm__markPrivateRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markPrivateRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__markPrivateRequest); if (soap_out_PointerTo_ngwm__markPrivateRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78428,7 +78428,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__logoutResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__logoutResponse(struct soap *soap, _ngwm__logoutResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__logoutResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__logoutResponse); if (soap_out_PointerTo_ngwm__logoutResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78481,7 +78481,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__logoutRequest(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__logoutRequest(struct soap *soap, _ngwm__logoutRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__logoutRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__logoutRequest); if (soap_out_PointerTo_ngwm__logoutRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78534,7 +78534,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__loginResponse(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__loginResponse(struct soap *soap, _ngwm__loginResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__loginResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__loginResponse); if (soap_out_PointerTo_ngwm__loginResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78587,7 +78587,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__loginRequest(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__loginRequest(struct soap *soap, _ngwm__loginRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__loginRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__loginRequest); if (soap_out_PointerTo_ngwm__loginRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78640,7 +78640,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getUserListResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getUserListResponse(struct soap *soap, _ngwm__getUserListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getUserListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getUserListResponse); if (soap_out_PointerTo_ngwm__getUserListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78693,7 +78693,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getUserListRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getUserListRequest(struct soap *soap, _ngwm__getUserListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getUserListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getUserListRequest); if (soap_out_PointerTo_ngwm__getUserListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78746,7 +78746,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getTimezoneListRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getTimezoneListResponse(struct soap *soap, _ngwm__getTimezoneListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimezoneListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimezoneListResponse); if (soap_out_PointerTo_ngwm__getTimezoneListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78799,7 +78799,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getTimezoneListRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getTimezoneListRequest(struct soap *soap, _ngwm__getTimezoneListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimezoneListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimezoneListRequest); if (soap_out_PointerTo_ngwm__getTimezoneListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78852,7 +78852,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getTimestampResponse(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getTimestampResponse(struct soap *soap, _ngwm__getTimestampResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimestampResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimestampResponse); if (soap_out_PointerTo_ngwm__getTimestampResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78905,7 +78905,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getTimestampRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getTimestampRequest(struct soap *soap, _ngwm__getTimestampRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimestampRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getTimestampRequest); if (soap_out_PointerTo_ngwm__getTimestampRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -78958,7 +78958,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getSignaturesResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getSignaturesResponse(struct soap *soap, _ngwm__getSignaturesResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSignaturesResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSignaturesResponse); if (soap_out_PointerTo_ngwm__getSignaturesResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79011,7 +79011,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getSignaturesRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getSignaturesRequest(struct soap *soap, _ngwm__getSignaturesRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSignaturesRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSignaturesRequest); if (soap_out_PointerTo_ngwm__getSignaturesRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79064,7 +79064,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getSettingsResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getSettingsResponse(struct soap *soap, _ngwm__getSettingsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSettingsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSettingsResponse); if (soap_out_PointerTo_ngwm__getSettingsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79117,7 +79117,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getSettingsRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getSettingsRequest(struct soap *soap, _ngwm__getSettingsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSettingsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getSettingsRequest); if (soap_out_PointerTo_ngwm__getSettingsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79170,7 +79170,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getRuleListResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getRuleListResponse(struct soap *soap, _ngwm__getRuleListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getRuleListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getRuleListResponse); if (soap_out_PointerTo_ngwm__getRuleListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79223,7 +79223,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getRuleListRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getRuleListRequest(struct soap *soap, _ngwm__getRuleListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getRuleListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getRuleListRequest); if (soap_out_PointerTo_ngwm__getRuleListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79276,7 +79276,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getProxyListResponse(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getProxyListResponse(struct soap *soap, _ngwm__getProxyListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyListResponse); if (soap_out_PointerTo_ngwm__getProxyListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79329,7 +79329,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getProxyListRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getProxyListRequest(struct soap *soap, _ngwm__getProxyListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyListRequest); if (soap_out_PointerTo_ngwm__getProxyListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79382,7 +79382,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getProxyAccessListResp SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getProxyAccessListResponse(struct soap *soap, _ngwm__getProxyAccessListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyAccessListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyAccessListResponse); if (soap_out_PointerTo_ngwm__getProxyAccessListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79435,7 +79435,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getProxyAccessListRequ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getProxyAccessListRequest(struct soap *soap, _ngwm__getProxyAccessListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyAccessListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getProxyAccessListRequest); if (soap_out_PointerTo_ngwm__getProxyAccessListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79488,7 +79488,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getQuickMessagesRespon SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getQuickMessagesResponse(struct soap *soap, _ngwm__getQuickMessagesResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getQuickMessagesResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getQuickMessagesResponse); if (soap_out_PointerTo_ngwm__getQuickMessagesResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79541,7 +79541,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getQuickMessagesReques SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getQuickMessagesRequest(struct soap *soap, _ngwm__getQuickMessagesRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getQuickMessagesRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getQuickMessagesRequest); if (soap_out_PointerTo_ngwm__getQuickMessagesRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79594,7 +79594,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getLibraryListResponse SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getLibraryListResponse(struct soap *soap, _ngwm__getLibraryListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryListResponse); if (soap_out_PointerTo_ngwm__getLibraryListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79647,7 +79647,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getLibraryListRequest( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getLibraryListRequest(struct soap *soap, _ngwm__getLibraryListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryListRequest); if (soap_out_PointerTo_ngwm__getLibraryListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79700,7 +79700,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getLibraryItemResponse SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getLibraryItemResponse(struct soap *soap, _ngwm__getLibraryItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryItemResponse); if (soap_out_PointerTo_ngwm__getLibraryItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79753,7 +79753,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getLibraryItemRequest( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getLibraryItemRequest(struct soap *soap, _ngwm__getLibraryItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getLibraryItemRequest); if (soap_out_PointerTo_ngwm__getLibraryItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79806,7 +79806,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getJunkMailSettingsRes SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getJunkMailSettingsResponse(struct soap *soap, _ngwm__getJunkMailSettingsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkMailSettingsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkMailSettingsResponse); if (soap_out_PointerTo_ngwm__getJunkMailSettingsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79859,7 +79859,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getJunkMailSettingsReq SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getJunkMailSettingsRequest(struct soap *soap, _ngwm__getJunkMailSettingsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkMailSettingsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkMailSettingsRequest); if (soap_out_PointerTo_ngwm__getJunkMailSettingsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79912,7 +79912,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getJunkEntriesResponse SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getJunkEntriesResponse(struct soap *soap, _ngwm__getJunkEntriesResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkEntriesResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkEntriesResponse); if (soap_out_PointerTo_ngwm__getJunkEntriesResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -79965,7 +79965,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getJunkEntriesRequest( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getJunkEntriesRequest(struct soap *soap, _ngwm__getJunkEntriesRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkEntriesRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getJunkEntriesRequest); if (soap_out_PointerTo_ngwm__getJunkEntriesRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80018,7 +80018,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getItemsResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getItemsResponse(struct soap *soap, _ngwm__getItemsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemsResponse); if (soap_out_PointerTo_ngwm__getItemsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80071,7 +80071,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getItemsRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getItemsRequest(struct soap *soap, _ngwm__getItemsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemsRequest); if (soap_out_PointerTo_ngwm__getItemsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80124,7 +80124,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getItemResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getItemResponse(struct soap *soap, _ngwm__getItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemResponse); if (soap_out_PointerTo_ngwm__getItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80177,7 +80177,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getItemRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getItemRequest(struct soap *soap, _ngwm__getItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getItemRequest); if (soap_out_PointerTo_ngwm__getItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80230,7 +80230,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getFreeBusyResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getFreeBusyResponse(struct soap *soap, _ngwm__getFreeBusyResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFreeBusyResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFreeBusyResponse); if (soap_out_PointerTo_ngwm__getFreeBusyResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80283,7 +80283,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getFreeBusyRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getFreeBusyRequest(struct soap *soap, _ngwm__getFreeBusyRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFreeBusyRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFreeBusyRequest); if (soap_out_PointerTo_ngwm__getFreeBusyRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80336,7 +80336,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getFolderListResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getFolderListResponse(struct soap *soap, _ngwm__getFolderListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderListResponse); if (soap_out_PointerTo_ngwm__getFolderListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80389,7 +80389,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getFolderListRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getFolderListRequest(struct soap *soap, _ngwm__getFolderListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderListRequest); if (soap_out_PointerTo_ngwm__getFolderListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80442,7 +80442,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getFolderResponse(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getFolderResponse(struct soap *soap, _ngwm__getFolderResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderResponse); if (soap_out_PointerTo_ngwm__getFolderResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80495,7 +80495,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getFolderRequest(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getFolderRequest(struct soap *soap, _ngwm__getFolderRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getFolderRequest); if (soap_out_PointerTo_ngwm__getFolderRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80548,7 +80548,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getDocumentTypeListRes SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getDocumentTypeListResponse(struct soap *soap, _ngwm__getDocumentTypeListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDocumentTypeListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDocumentTypeListResponse); if (soap_out_PointerTo_ngwm__getDocumentTypeListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80601,7 +80601,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getDocumentTypeListReq SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getDocumentTypeListRequest(struct soap *soap, _ngwm__getDocumentTypeListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDocumentTypeListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDocumentTypeListRequest); if (soap_out_PointerTo_ngwm__getDocumentTypeListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80654,7 +80654,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getDeltaInfoResponse(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getDeltaInfoResponse(struct soap *soap, _ngwm__getDeltaInfoResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltaInfoResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltaInfoResponse); if (soap_out_PointerTo_ngwm__getDeltaInfoResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80707,7 +80707,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getDeltaInfoRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getDeltaInfoRequest(struct soap *soap, _ngwm__getDeltaInfoRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltaInfoRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltaInfoRequest); if (soap_out_PointerTo_ngwm__getDeltaInfoRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80760,7 +80760,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getDeltasResponse(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getDeltasResponse(struct soap *soap, _ngwm__getDeltasResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltasResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltasResponse); if (soap_out_PointerTo_ngwm__getDeltasResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80813,7 +80813,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getDeltasRequest(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getDeltasRequest(struct soap *soap, _ngwm__getDeltasRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltasRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getDeltasRequest); if (soap_out_PointerTo_ngwm__getDeltasRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80866,7 +80866,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getCustomListResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getCustomListResponse(struct soap *soap, _ngwm__getCustomListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCustomListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCustomListResponse); if (soap_out_PointerTo_ngwm__getCustomListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80919,7 +80919,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getCustomListRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getCustomListRequest(struct soap *soap, _ngwm__getCustomListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCustomListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCustomListRequest); if (soap_out_PointerTo_ngwm__getCustomListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -80972,7 +80972,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getCategoryListRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getCategoryListResponse(struct soap *soap, _ngwm__getCategoryListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCategoryListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCategoryListResponse); if (soap_out_PointerTo_ngwm__getCategoryListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81025,7 +81025,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getCategoryListRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getCategoryListRequest(struct soap *soap, _ngwm__getCategoryListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCategoryListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getCategoryListRequest); if (soap_out_PointerTo_ngwm__getCategoryListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81078,7 +81078,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getAttachmentResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getAttachmentResponse(struct soap *soap, _ngwm__getAttachmentResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAttachmentResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAttachmentResponse); if (soap_out_PointerTo_ngwm__getAttachmentResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81131,7 +81131,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getAttachmentRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getAttachmentRequest(struct soap *soap, _ngwm__getAttachmentRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAttachmentRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAttachmentRequest); if (soap_out_PointerTo_ngwm__getAttachmentRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81184,7 +81184,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getAddressBookListResp SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getAddressBookListResponse(struct soap *soap, _ngwm__getAddressBookListResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAddressBookListResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAddressBookListResponse); if (soap_out_PointerTo_ngwm__getAddressBookListResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81237,7 +81237,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__getAddressBookListRequ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__getAddressBookListRequest(struct soap *soap, _ngwm__getAddressBookListRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAddressBookListRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__getAddressBookListRequest); if (soap_out_PointerTo_ngwm__getAddressBookListRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81290,7 +81290,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__forwardResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__forwardResponse(struct soap *soap, _ngwm__forwardResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__forwardResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__forwardResponse); if (soap_out_PointerTo_ngwm__forwardResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81343,7 +81343,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__forwardRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__forwardRequest(struct soap *soap, _ngwm__forwardRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__forwardRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__forwardRequest); if (soap_out_PointerTo_ngwm__forwardRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81396,7 +81396,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__executeRuleResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__executeRuleResponse(struct soap *soap, _ngwm__executeRuleResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__executeRuleResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__executeRuleResponse); if (soap_out_PointerTo_ngwm__executeRuleResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81449,7 +81449,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__executeRuleRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__executeRuleRequest(struct soap *soap, _ngwm__executeRuleRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__executeRuleRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__executeRuleRequest); if (soap_out_PointerTo_ngwm__executeRuleRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81502,7 +81502,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__destroyCursorResponse( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__destroyCursorResponse(struct soap *soap, _ngwm__destroyCursorResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__destroyCursorResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__destroyCursorResponse); if (soap_out_PointerTo_ngwm__destroyCursorResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81555,7 +81555,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__destroyCursorRequest(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__destroyCursorRequest(struct soap *soap, _ngwm__destroyCursorRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__destroyCursorRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__destroyCursorRequest); if (soap_out_PointerTo_ngwm__destroyCursorRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81608,7 +81608,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__delegateResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__delegateResponse(struct soap *soap, _ngwm__delegateResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__delegateResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__delegateResponse); if (soap_out_PointerTo_ngwm__delegateResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81661,7 +81661,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__delegateRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__delegateRequest(struct soap *soap, _ngwm__delegateRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__delegateRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__delegateRequest); if (soap_out_PointerTo_ngwm__delegateRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81714,7 +81714,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__declineResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__declineResponse(struct soap *soap, _ngwm__declineResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__declineResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__declineResponse); if (soap_out_PointerTo_ngwm__declineResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81767,7 +81767,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__declineRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__declineRequest(struct soap *soap, _ngwm__declineRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__declineRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__declineRequest); if (soap_out_PointerTo_ngwm__declineRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81820,7 +81820,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createSignatureRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createSignatureResponse(struct soap *soap, _ngwm__createSignatureResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createSignatureResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createSignatureResponse); if (soap_out_PointerTo_ngwm__createSignatureResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81873,7 +81873,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createSignatureRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createSignatureRequest(struct soap *soap, _ngwm__createSignatureRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createSignatureRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createSignatureRequest); if (soap_out_PointerTo_ngwm__createSignatureRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81926,7 +81926,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createProxyAccessRespo SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createProxyAccessResponse(struct soap *soap, _ngwm__createProxyAccessResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createProxyAccessResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createProxyAccessResponse); if (soap_out_PointerTo_ngwm__createProxyAccessResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -81979,7 +81979,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createProxyAccessReque SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createProxyAccessRequest(struct soap *soap, _ngwm__createProxyAccessRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createProxyAccessRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createProxyAccessRequest); if (soap_out_PointerTo_ngwm__createProxyAccessRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82032,7 +82032,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createJunkEntryRespons SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createJunkEntryResponse(struct soap *soap, _ngwm__createJunkEntryResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createJunkEntryResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createJunkEntryResponse); if (soap_out_PointerTo_ngwm__createJunkEntryResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82085,7 +82085,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createJunkEntryRequest SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createJunkEntryRequest(struct soap *soap, _ngwm__createJunkEntryRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createJunkEntryRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createJunkEntryRequest); if (soap_out_PointerTo_ngwm__createJunkEntryRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82138,7 +82138,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createItemsResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createItemsResponse(struct soap *soap, _ngwm__createItemsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemsResponse); if (soap_out_PointerTo_ngwm__createItemsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82191,7 +82191,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createItemsRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createItemsRequest(struct soap *soap, _ngwm__createItemsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemsRequest); if (soap_out_PointerTo_ngwm__createItemsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82244,7 +82244,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createItemResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createItemResponse(struct soap *soap, _ngwm__createItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemResponse); if (soap_out_PointerTo_ngwm__createItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82297,7 +82297,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createItemRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createItemRequest(struct soap *soap, _ngwm__createItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createItemRequest); if (soap_out_PointerTo_ngwm__createItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82350,7 +82350,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createCursorResponse(s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createCursorResponse(struct soap *soap, _ngwm__createCursorResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createCursorResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createCursorResponse); if (soap_out_PointerTo_ngwm__createCursorResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82403,7 +82403,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__createCursorRequest(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__createCursorRequest(struct soap *soap, _ngwm__createCursorRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createCursorRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__createCursorRequest); if (soap_out_PointerTo_ngwm__createCursorRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82456,7 +82456,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__completeResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__completeResponse(struct soap *soap, _ngwm__completeResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__completeResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__completeResponse); if (soap_out_PointerTo_ngwm__completeResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82509,7 +82509,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__completeRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__completeRequest(struct soap *soap, _ngwm__completeRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__completeRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__completeRequest); if (soap_out_PointerTo_ngwm__completeRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82562,7 +82562,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__closeFreeBusySessionRe SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__closeFreeBusySessionResponse(struct soap *soap, _ngwm__closeFreeBusySessionResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__closeFreeBusySessionResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__closeFreeBusySessionResponse); if (soap_out_PointerTo_ngwm__closeFreeBusySessionResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82615,7 +82615,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__closeFreeBusySessionRe SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__closeFreeBusySessionRequest(struct soap *soap, _ngwm__closeFreeBusySessionRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__closeFreeBusySessionRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__closeFreeBusySessionRequest); if (soap_out_PointerTo_ngwm__closeFreeBusySessionRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82668,7 +82668,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__addMembersResponse(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__addMembersResponse(struct soap *soap, _ngwm__addMembersResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addMembersResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addMembersResponse); if (soap_out_PointerTo_ngwm__addMembersResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82721,7 +82721,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__addMembersRequest(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__addMembersRequest(struct soap *soap, _ngwm__addMembersRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addMembersRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addMembersRequest); if (soap_out_PointerTo_ngwm__addMembersRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82774,7 +82774,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__addItemsResponse(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__addItemsResponse(struct soap *soap, _ngwm__addItemsResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemsResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemsResponse); if (soap_out_PointerTo_ngwm__addItemsResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82827,7 +82827,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__addItemsRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__addItemsRequest(struct soap *soap, _ngwm__addItemsRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemsRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemsRequest); if (soap_out_PointerTo_ngwm__addItemsRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82880,7 +82880,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__addItemResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__addItemResponse(struct soap *soap, _ngwm__addItemResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemResponse); if (soap_out_PointerTo_ngwm__addItemResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82933,7 +82933,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__addItemRequest(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__addItemRequest(struct soap *soap, _ngwm__addItemRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__addItemRequest); if (soap_out_PointerTo_ngwm__addItemRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -82986,7 +82986,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__acceptShareResponse(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__acceptShareResponse(struct soap *soap, _ngwm__acceptShareResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptShareResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptShareResponse); if (soap_out_PointerTo_ngwm__acceptShareResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83039,7 +83039,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__acceptShareRequest(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__acceptShareRequest(struct soap *soap, _ngwm__acceptShareRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptShareRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptShareRequest); if (soap_out_PointerTo_ngwm__acceptShareRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83092,7 +83092,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__acceptResponse(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__acceptResponse(struct soap *soap, _ngwm__acceptResponse *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptResponse); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptResponse); if (soap_out_PointerTo_ngwm__acceptResponse(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83145,7 +83145,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ngwm__acceptRequest(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ngwm__acceptRequest(struct soap *soap, _ngwm__acceptRequest *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptRequest); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTo_ngwm__acceptRequest); if (soap_out_PointerTo_ngwm__acceptRequest(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83198,7 +83198,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Alarm(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Alarm(struct soap *soap, ngwt__Alarm *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Alarm); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Alarm); if (soap_out_PointerTongwt__Alarm(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83251,7 +83251,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__PhoneFlags(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__PhoneFlags(struct soap *soap, ngwt__PhoneFlags *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PhoneFlags); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PhoneFlags); if (soap_out_PointerTongwt__PhoneFlags(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83304,7 +83304,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RecurrenceRule(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RecurrenceRule(struct soap *soap, ngwt__RecurrenceRule *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecurrenceRule); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecurrenceRule); if (soap_out_PointerTongwt__RecurrenceRule(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83357,7 +83357,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RecurrenceDateType(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RecurrenceDateType(struct soap *soap, ngwt__RecurrenceDateType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecurrenceDateType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecurrenceDateType); if (soap_out_PointerTongwt__RecurrenceDateType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83410,7 +83410,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SMimeOperation(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SMimeOperation(struct soap *soap, ngwt__SMimeOperation *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SMimeOperation); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SMimeOperation); if (soap_out_PointerTongwt__SMimeOperation(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83463,7 +83463,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__LinkInfo(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__LinkInfo(struct soap *soap, ngwt__LinkInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__LinkInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__LinkInfo); if (soap_out_PointerTongwt__LinkInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83516,7 +83516,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemOptions(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemOptions(struct soap *soap, ngwt__ItemOptions *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemOptions); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemOptions); if (soap_out_PointerTongwt__ItemOptions(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83569,7 +83569,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AttachmentInfo(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AttachmentInfo(struct soap *soap, ngwt__AttachmentInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AttachmentInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AttachmentInfo); if (soap_out_PointerTongwt__AttachmentInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83622,7 +83622,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__MessageBody(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__MessageBody(struct soap *soap, ngwt__MessageBody *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MessageBody); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MessageBody); if (soap_out_PointerTongwt__MessageBody(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83675,7 +83675,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ReferenceInfo(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ReferenceInfo(struct soap *soap, ngwt__ReferenceInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ReferenceInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ReferenceInfo); if (soap_out_PointerTongwt__ReferenceInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83728,7 +83728,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__PersonalInfo(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__PersonalInfo(struct soap *soap, ngwt__PersonalInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PersonalInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PersonalInfo); if (soap_out_PointerTongwt__PersonalInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83781,7 +83781,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__OfficeInfo(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__OfficeInfo(struct soap *soap, ngwt__OfficeInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__OfficeInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__OfficeInfo); if (soap_out_PointerTongwt__OfficeInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83834,7 +83834,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__PostalAddressList(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__PostalAddressList(struct soap *soap, ngwt__PostalAddressList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PostalAddressList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PostalAddressList); if (soap_out_PointerTongwt__PostalAddressList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83887,7 +83887,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__PhoneList(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__PhoneList(struct soap *soap, ngwt__PhoneList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PhoneList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PhoneList); if (soap_out_PointerTongwt__PhoneList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83940,7 +83940,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ImAddressList(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ImAddressList(struct soap *soap, ngwt__ImAddressList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ImAddressList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ImAddressList); if (soap_out_PointerTongwt__ImAddressList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -83993,7 +83993,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__EmailAddressList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__EmailAddressList(struct soap *soap, ngwt__EmailAddressList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__EmailAddressList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__EmailAddressList); if (soap_out_PointerTongwt__EmailAddressList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84046,7 +84046,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FullName(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FullName(struct soap *soap, ngwt__FullName *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FullName); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FullName); if (soap_out_PointerTongwt__FullName(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84098,7 +84098,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__VersionStatus(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__VersionStatus(struct soap *soap, enum ngwt__VersionStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__VersionStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__VersionStatus); if (soap_out_PointerTongwt__VersionStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84148,7 +84148,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FolderACL(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FolderACL(struct soap *soap, ngwt__FolderACL *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderACL); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderACL); if (soap_out_PointerTongwt__FolderACL(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84201,7 +84201,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RuleActionList(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RuleActionList(struct soap *soap, ngwt__RuleActionList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RuleActionList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RuleActionList); if (soap_out_PointerTongwt__RuleActionList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84253,7 +84253,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Execution(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Execution(struct soap *soap, enum ngwt__Execution *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Execution); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Execution); if (soap_out_PointerTongwt__Execution(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84303,7 +84303,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Query(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Query(struct soap *soap, ngwt__Query *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Query); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Query); if (soap_out_PointerTongwt__Query(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84355,7 +84355,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FolderACLStatus(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FolderACLStatus(struct soap *soap, enum ngwt__FolderACLStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderACLStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderACLStatus); if (soap_out_PointerTongwt__FolderACLStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84405,7 +84405,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessControlList(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessControlList(struct soap *soap, ngwt__AccessControlList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessControlList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessControlList); if (soap_out_PointerTongwt__AccessControlList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84457,7 +84457,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__WeekOfYear(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__WeekOfYear(struct soap *soap, short *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__WeekOfYear); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__WeekOfYear); if (soap_out_PointerTongwt__WeekOfYear(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84506,7 +84506,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__OccurrenceType(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__OccurrenceType(struct soap *soap, enum ngwt__OccurrenceType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__OccurrenceType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__OccurrenceType); if (soap_out_PointerTongwt__OccurrenceType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84555,7 +84555,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemSecurity(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemSecurity(struct soap *soap, enum ngwt__ItemSecurity *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemSecurity); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemSecurity); if (soap_out_PointerTongwt__ItemSecurity(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84604,7 +84604,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemClass(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemClass(struct soap *soap, enum ngwt__ItemClass *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemClass); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemClass); if (soap_out_PointerTongwt__ItemClass(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84653,7 +84653,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemSource(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemSource(struct soap *soap, enum ngwt__ItemSource *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemSource); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemSource); if (soap_out_PointerTongwt__ItemSource(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84703,7 +84703,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemStatus(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemStatus(struct soap *soap, ngwt__ItemStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemStatus); if (soap_out_PointerTongwt__ItemStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84755,7 +84755,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DeltaSyncType(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DeltaSyncType(struct soap *soap, enum ngwt__DeltaSyncType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DeltaSyncType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DeltaSyncType); if (soap_out_PointerTongwt__DeltaSyncType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84805,7 +84805,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RecipientStatus(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RecipientStatus(struct soap *soap, ngwt__RecipientStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecipientStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecipientStatus); if (soap_out_PointerTongwt__RecipientStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84858,7 +84858,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FreeBusyBlockList(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FreeBusyBlockList(struct soap *soap, ngwt__FreeBusyBlockList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyBlockList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyBlockList); if (soap_out_PointerTongwt__FreeBusyBlockList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84911,7 +84911,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CalendarFolderAttribute SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CalendarFolderAttribute(struct soap *soap, ngwt__CalendarFolderAttribute *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CalendarFolderAttribute); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CalendarFolderAttribute); if (soap_out_PointerTongwt__CalendarFolderAttribute(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -84963,7 +84963,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FilterDate(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FilterDate(struct soap *soap, enum ngwt__FilterDate *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FilterDate); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FilterDate); if (soap_out_PointerTongwt__FilterDate(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85013,7 +85013,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ContainerRef(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ContainerRef(struct soap *soap, ngwt__ContainerRef *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ContainerRef); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ContainerRef); if (soap_out_PointerTongwt__ContainerRef(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85065,7 +85065,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CategoryType(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CategoryType(struct soap *soap, enum ngwt__CategoryType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CategoryType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CategoryType); if (soap_out_PointerTongwt__CategoryType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85115,7 +85115,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessMiscRight(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessMiscRight(struct soap *soap, ngwt__AccessMiscRight *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessMiscRight); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessMiscRight); if (soap_out_PointerTongwt__AccessMiscRight(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85168,7 +85168,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessRight(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessRight(struct soap *soap, ngwt__AccessRight *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRight); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRight); if (soap_out_PointerTongwt__AccessRight(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85221,7 +85221,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Rights(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Rights(struct soap *soap, ngwt__Rights *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Rights); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Rights); if (soap_out_PointerTongwt__Rights(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85274,7 +85274,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__EventList(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__EventList(struct soap *soap, ngwe__EventList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventList); if (soap_out_PointerTongwe__EventList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85327,7 +85327,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__EventsList(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__EventsList(struct soap *soap, ngwe__EventsList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventsList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventsList); if (soap_out_PointerTongwe__EventsList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85380,7 +85380,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__Events(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__Events(struct soap *soap, ngwe__Events *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__Events); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__Events); if (soap_out_PointerTongwe__Events(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85433,7 +85433,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__EventDefinition(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__EventDefinition(struct soap *soap, ngwe__EventDefinition *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventDefinition); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventDefinition); if (soap_out_PointerTongwe__EventDefinition(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85486,7 +85486,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__duration(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__duration(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToxsd__duration); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToxsd__duration); if (soap_out_PointerToxsd__duration(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85536,7 +85536,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__Event(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__Event(struct soap *soap, ngwe__Event *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__Event); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__Event); if (soap_out_PointerTongwe__Event(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85589,7 +85589,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__ContainerList(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__ContainerList(struct soap *soap, ngwe__ContainerList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__ContainerList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__ContainerList); if (soap_out_PointerTongwe__ContainerList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85641,7 +85641,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__ItemTypeList(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__ItemTypeList(struct soap *soap, enum ngwe__ItemTypeList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__ItemTypeList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__ItemTypeList); if (soap_out_PointerTongwe__ItemTypeList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85691,7 +85691,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__EventTypeList(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__EventTypeList(struct soap *soap, ngwe__EventTypeList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventTypeList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__EventTypeList); if (soap_out_PointerTongwe__EventTypeList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85743,7 +85743,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__ItemType(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__ItemType(struct soap *soap, enum ngwe__ItemType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__ItemType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__ItemType); if (soap_out_PointerTongwe__ItemType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85792,7 +85792,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwe__FieldList(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwe__FieldList(struct soap *soap, enum ngwe__FieldList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__FieldList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwe__FieldList); if (soap_out_PointerTongwe__FieldList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85842,7 +85842,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FreeBusyUserList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FreeBusyUserList(struct soap *soap, ngwt__FreeBusyUserList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyUserList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyUserList); if (soap_out_PointerTongwt__FreeBusyUserList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85894,7 +85894,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RetractType(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RetractType(struct soap *soap, enum ngwt__RetractType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RetractType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RetractType); if (soap_out_PointerTongwt__RetractType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85944,7 +85944,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemList(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemList(struct soap *soap, ngwt__ItemList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemList); if (soap_out_PointerTongwt__ItemList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -85996,7 +85996,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CursorSeek(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CursorSeek(struct soap *soap, enum ngwt__CursorSeek *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CursorSeek); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CursorSeek); if (soap_out_PointerTongwt__CursorSeek(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86046,7 +86046,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessRightChanges(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessRightChanges(struct soap *soap, ngwt__AccessRightChanges *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRightChanges); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRightChanges); if (soap_out_PointerTongwt__AccessRightChanges(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86099,7 +86099,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ModifyItem(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ModifyItem(struct soap *soap, ngwt__ModifyItem *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ModifyItem); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ModifyItem); if (soap_out_PointerTongwt__ModifyItem(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86152,7 +86152,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Host(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Host(struct soap *soap, ngwt__Host *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Host); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Host); if (soap_out_PointerTongwt__Host(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86205,7 +86205,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Authentication(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Authentication(struct soap *soap, ngwt__Authentication *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Authentication); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Authentication); if (soap_out_PointerTongwt__Authentication(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86258,7 +86258,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__UserList(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__UserList(struct soap *soap, ngwt__UserList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__UserList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__UserList); if (soap_out_PointerTongwt__UserList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86311,7 +86311,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__TimezoneList(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__TimezoneList(struct soap *soap, ngwt__TimezoneList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__TimezoneList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__TimezoneList); if (soap_out_PointerTongwt__TimezoneList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86364,7 +86364,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Signatures(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Signatures(struct soap *soap, ngwt__Signatures *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Signatures); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Signatures); if (soap_out_PointerTongwt__Signatures(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86417,7 +86417,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Settings(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Settings(struct soap *soap, ngwt__Settings *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Settings); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Settings); if (soap_out_PointerTongwt__Settings(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86470,7 +86470,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RuleList(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RuleList(struct soap *soap, ngwt__RuleList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RuleList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RuleList); if (soap_out_PointerTongwt__RuleList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86523,7 +86523,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ProxyList(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ProxyList(struct soap *soap, ngwt__ProxyList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProxyList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProxyList); if (soap_out_PointerTongwt__ProxyList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86576,7 +86576,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessRightList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessRightList(struct soap *soap, ngwt__AccessRightList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRightList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRightList); if (soap_out_PointerTongwt__AccessRightList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86629,7 +86629,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__LibraryList(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__LibraryList(struct soap *soap, ngwt__LibraryList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__LibraryList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__LibraryList); if (soap_out_PointerTongwt__LibraryList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86682,7 +86682,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SettingsList(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SettingsList(struct soap *soap, ngwt__SettingsList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SettingsList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SettingsList); if (soap_out_PointerTongwt__SettingsList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86735,7 +86735,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__JunkHandlingList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__JunkHandlingList(struct soap *soap, ngwt__JunkHandlingList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__JunkHandlingList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__JunkHandlingList); if (soap_out_PointerTongwt__JunkHandlingList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86788,7 +86788,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FreeBusyInfoList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FreeBusyInfoList(struct soap *soap, ngwt__FreeBusyInfoList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyInfoList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyInfoList); if (soap_out_PointerTongwt__FreeBusyInfoList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86841,7 +86841,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FreeBusyStats(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FreeBusyStats(struct soap *soap, ngwt__FreeBusyStats *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyStats); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyStats); if (soap_out_PointerTongwt__FreeBusyStats(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86894,7 +86894,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FolderList(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FolderList(struct soap *soap, ngwt__FolderList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderList); if (soap_out_PointerTongwt__FolderList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86946,7 +86946,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemSourceList(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemSourceList(struct soap *soap, enum ngwt__ItemSourceList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemSourceList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemSourceList); if (soap_out_PointerTongwt__ItemSourceList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -86995,7 +86995,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__MessageTypeList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__MessageTypeList(struct soap *soap, enum ngwt__MessageTypeList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MessageTypeList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MessageTypeList); if (soap_out_PointerTongwt__MessageTypeList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87044,7 +87044,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FolderType(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FolderType(struct soap *soap, enum ngwt__FolderType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderType); if (soap_out_PointerTongwt__FolderType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87094,7 +87094,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DocumentTypeList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DocumentTypeList(struct soap *soap, ngwt__DocumentTypeList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DocumentTypeList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DocumentTypeList); if (soap_out_PointerTongwt__DocumentTypeList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87147,7 +87147,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Items(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Items(struct soap *soap, ngwt__Items *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Items); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Items); if (soap_out_PointerTongwt__Items(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87200,7 +87200,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DeltaInfo(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DeltaInfo(struct soap *soap, ngwt__DeltaInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DeltaInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DeltaInfo); if (soap_out_PointerTongwt__DeltaInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87253,7 +87253,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CustomList(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CustomList(struct soap *soap, ngwt__CustomList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CustomList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CustomList); if (soap_out_PointerTongwt__CustomList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87306,7 +87306,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CategoryList(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CategoryList(struct soap *soap, ngwt__CategoryList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CategoryList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CategoryList); if (soap_out_PointerTongwt__CategoryList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87359,7 +87359,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AddressBookList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AddressBookList(struct soap *soap, ngwt__AddressBookList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AddressBookList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AddressBookList); if (soap_out_PointerTongwt__AddressBookList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87412,7 +87412,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Distribution(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Distribution(struct soap *soap, ngwt__Distribution *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Distribution); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Distribution); if (soap_out_PointerTongwt__Distribution(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87465,7 +87465,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__View(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__View(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__View); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__View); if (soap_out_PointerTongwt__View(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87515,7 +87515,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Status(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Status(struct soap *soap, ngwt__Status *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Status); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Status); if (soap_out_PointerTongwt__Status(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87568,7 +87568,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemRefList(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemRefList(struct soap *soap, ngwt__ItemRefList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemRefList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemRefList); if (soap_out_PointerTongwt__ItemRefList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87621,7 +87621,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__UserInfo(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__UserInfo(struct soap *soap, ngwt__UserInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__UserInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__UserInfo); if (soap_out_PointerTongwt__UserInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87673,7 +87673,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RecipientType(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RecipientType(struct soap *soap, enum ngwt__RecipientType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecipientType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecipientType); if (soap_out_PointerTongwt__RecipientType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87723,7 +87723,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Timezone(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Timezone(struct soap *soap, ngwt__Timezone *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Timezone); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Timezone); if (soap_out_PointerTongwt__Timezone(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87775,7 +87775,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Minute(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Minute(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Minute); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Minute); if (soap_out_PointerTongwt__Minute(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87824,7 +87824,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Hour(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Hour(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Hour); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Hour); if (soap_out_PointerTongwt__Hour(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87874,7 +87874,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DayOfWeek(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DayOfWeek(struct soap *soap, ngwt__DayOfWeek *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfWeek); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfWeek); if (soap_out_PointerTongwt__DayOfWeek(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87926,7 +87926,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Day(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Day(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Day); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Day); if (soap_out_PointerTongwt__Day(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -87975,7 +87975,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Month(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Month(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Month); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Month); if (soap_out_PointerTongwt__Month(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88025,7 +88025,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__TimezoneComponent(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__TimezoneComponent(struct soap *soap, ngwt__TimezoneComponent *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__TimezoneComponent); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__TimezoneComponent); if (soap_out_PointerTongwt__TimezoneComponent(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88078,7 +88078,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ProblemList(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ProblemList(struct soap *soap, ngwt__ProblemList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProblemList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProblemList); if (soap_out_PointerTongwt__ProblemList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88131,7 +88131,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Signature(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Signature(struct soap *soap, ngwt__Signature *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Signature); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Signature); if (soap_out_PointerTongwt__Signature(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88184,7 +88184,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SignatureData(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SignatureData(struct soap *soap, ngwt__SignatureData *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SignatureData); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SignatureData); if (soap_out_PointerTongwt__SignatureData(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88237,7 +88237,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SettingsGroup(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SettingsGroup(struct soap *soap, ngwt__SettingsGroup *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SettingsGroup); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SettingsGroup); if (soap_out_PointerTongwt__SettingsGroup(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88290,7 +88290,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ReturnNotification(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ReturnNotification(struct soap *soap, ngwt__ReturnNotification *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ReturnNotification); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ReturnNotification); if (soap_out_PointerTongwt__ReturnNotification(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88343,7 +88343,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__StatusTracking(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__StatusTracking(struct soap *soap, ngwt__StatusTracking *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__StatusTracking); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__StatusTracking); if (soap_out_PointerTongwt__StatusTracking(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88396,7 +88396,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SendOptionsRequestReply SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SendOptionsRequestReply(struct soap *soap, ngwt__SendOptionsRequestReply *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SendOptionsRequestReply); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SendOptionsRequestReply); if (soap_out_PointerTongwt__SendOptionsRequestReply(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88449,7 +88449,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Rule(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Rule(struct soap *soap, ngwt__Rule *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Rule); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Rule); if (soap_out_PointerTongwt__Rule(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88502,7 +88502,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RuleAction(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RuleAction(struct soap *soap, ngwt__RuleAction *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RuleAction); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RuleAction); if (soap_out_PointerTongwt__RuleAction(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88555,7 +88555,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CategoryRefList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CategoryRefList(struct soap *soap, ngwt__CategoryRefList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CategoryRefList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CategoryRefList); if (soap_out_PointerTongwt__CategoryRefList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88608,7 +88608,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Mail(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Mail(struct soap *soap, ngwt__Mail *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Mail); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Mail); if (soap_out_PointerTongwt__Mail(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88661,7 +88661,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ReturnNotificationOptio SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ReturnNotificationOptions(struct soap *soap, ngwt__ReturnNotificationOptions *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ReturnNotificationOptions); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ReturnNotificationOptions); if (soap_out_PointerTongwt__ReturnNotificationOptions(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88714,7 +88714,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__MonthList(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__MonthList(struct soap *soap, ngwt__MonthList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MonthList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MonthList); if (soap_out_PointerTongwt__MonthList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88767,7 +88767,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DayOfYearList(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DayOfYearList(struct soap *soap, ngwt__DayOfYearList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfYearList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfYearList); if (soap_out_PointerTongwt__DayOfYearList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88820,7 +88820,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DayOfMonthList(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DayOfMonthList(struct soap *soap, ngwt__DayOfMonthList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfMonthList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfMonthList); if (soap_out_PointerTongwt__DayOfMonthList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88873,7 +88873,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DayOfYearWeekList(struc SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DayOfYearWeekList(struct soap *soap, ngwt__DayOfYearWeekList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfYearWeekList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfYearWeekList); if (soap_out_PointerTongwt__DayOfYearWeekList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88925,7 +88925,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Frequency(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Frequency(struct soap *soap, enum ngwt__Frequency *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Frequency); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Frequency); if (soap_out_PointerTongwt__Frequency(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -88975,7 +88975,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DelegateeStatus(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DelegateeStatus(struct soap *soap, ngwt__DelegateeStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DelegateeStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DelegateeStatus); if (soap_out_PointerTongwt__DelegateeStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89028,7 +89028,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DelegatedStatus(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DelegatedStatus(struct soap *soap, ngwt__DelegatedStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DelegatedStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DelegatedStatus); if (soap_out_PointerTongwt__DelegatedStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89081,7 +89081,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CommentStatus(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CommentStatus(struct soap *soap, ngwt__CommentStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CommentStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CommentStatus); if (soap_out_PointerTongwt__CommentStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89134,7 +89134,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__TransferFailedStatus(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__TransferFailedStatus(struct soap *soap, ngwt__TransferFailedStatus *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__TransferFailedStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__TransferFailedStatus); if (soap_out_PointerTongwt__TransferFailedStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89187,7 +89187,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Recipient(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Recipient(struct soap *soap, ngwt__Recipient *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Recipient); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Recipient); if (soap_out_PointerTongwt__Recipient(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89240,7 +89240,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Filter(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Filter(struct soap *soap, ngwt__Filter *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Filter); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Filter); if (soap_out_PointerTongwt__Filter(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89293,7 +89293,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__QueryTarget(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__QueryTarget(struct soap *soap, ngwt__QueryTarget *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__QueryTarget); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__QueryTarget); if (soap_out_PointerTongwt__QueryTarget(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89346,7 +89346,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ProxyUser(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ProxyUser(struct soap *soap, ngwt__ProxyUser *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProxyUser); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProxyUser); if (soap_out_PointerTongwt__ProxyUser(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89399,7 +89399,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ProblemEntry(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ProblemEntry(struct soap *soap, ngwt__ProblemEntry *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProblemEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ProblemEntry); if (soap_out_PointerTongwt__ProblemEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89452,7 +89452,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__PostalAddress(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__PostalAddress(struct soap *soap, ngwt__PostalAddress *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PostalAddress); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PostalAddress); if (soap_out_PointerTongwt__PostalAddress(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89505,7 +89505,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__PhoneNumber(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__PhoneNumber(struct soap *soap, ngwt__PhoneNumber *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PhoneNumber); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__PhoneNumber); if (soap_out_PointerTongwt__PhoneNumber(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89558,7 +89558,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__date(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__date(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToxsd__date); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToxsd__date); if (soap_out_PointerToxsd__date(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89608,7 +89608,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemRef(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemRef(struct soap *soap, ngwt__ItemRef *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemRef); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemRef); if (soap_out_PointerTongwt__ItemRef(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89661,7 +89661,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__UUID(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__UUID(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__UUID); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__UUID); if (soap_out_PointerTongwt__UUID(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89711,7 +89711,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SharedFolderNotificatio SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SharedFolderNotification(struct soap *soap, ngwt__SharedFolderNotification *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SharedFolderNotification); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SharedFolderNotification); if (soap_out_PointerTongwt__SharedFolderNotification(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89764,7 +89764,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__MessagePart(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__MessagePart(struct soap *soap, ngwt__MessagePart *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MessagePart); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__MessagePart); if (soap_out_PointerTongwt__MessagePart(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89817,7 +89817,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Library(struct soap *so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Library(struct soap *soap, ngwt__Library *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Library); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Library); if (soap_out_PointerTongwt__Library(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89870,7 +89870,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__JunkEntry(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__JunkEntry(struct soap *soap, ngwt__JunkEntry *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__JunkEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__JunkEntry); if (soap_out_PointerTongwt__JunkEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89922,7 +89922,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__JunkHandlingListType(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__JunkHandlingListType(struct soap *soap, enum ngwt__JunkHandlingListType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__JunkHandlingListType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__JunkHandlingListType); if (soap_out_PointerTongwt__JunkHandlingListType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -89972,7 +89972,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Item(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Item(struct soap *soap, ngwt__Item *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Item); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Item); if (soap_out_PointerTongwt__Item(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90025,7 +90025,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ItemChanges(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ItemChanges(struct soap *soap, ngwt__ItemChanges *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemChanges); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ItemChanges); if (soap_out_PointerTongwt__ItemChanges(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90078,7 +90078,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__ImAddress(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__ImAddress(struct soap *soap, ngwt__ImAddress *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ImAddress); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__ImAddress); if (soap_out_PointerTongwt__ImAddress(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90131,7 +90131,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__GroupMember(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__GroupMember(struct soap *soap, ngwt__GroupMember *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__GroupMember); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__GroupMember); if (soap_out_PointerTongwt__GroupMember(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90184,7 +90184,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__GroupMemberList(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__GroupMemberList(struct soap *soap, ngwt__GroupMemberList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__GroupMemberList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__GroupMemberList); if (soap_out_PointerTongwt__GroupMemberList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90237,7 +90237,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FreeBusyInfo(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FreeBusyInfo(struct soap *soap, ngwt__FreeBusyInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyInfo); if (soap_out_PointerTongwt__FreeBusyInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90290,7 +90290,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__NameAndEmail(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__NameAndEmail(struct soap *soap, ngwt__NameAndEmail *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__NameAndEmail); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__NameAndEmail); if (soap_out_PointerTongwt__NameAndEmail(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90342,7 +90342,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AcceptLevel(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AcceptLevel(struct soap *soap, enum ngwt__AcceptLevel *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AcceptLevel); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AcceptLevel); if (soap_out_PointerTongwt__AcceptLevel(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90392,7 +90392,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FreeBusyBlock(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FreeBusyBlock(struct soap *soap, ngwt__FreeBusyBlock *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyBlock); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FreeBusyBlock); if (soap_out_PointerTongwt__FreeBusyBlock(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90445,7 +90445,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Folder(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Folder(struct soap *soap, ngwt__Folder *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Folder); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Folder); if (soap_out_PointerTongwt__Folder(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90498,7 +90498,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FolderACLEntry(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FolderACLEntry(struct soap *soap, ngwt__FolderACLEntry *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderACLEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FolderACLEntry); if (soap_out_PointerTongwt__FolderACLEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90551,7 +90551,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__FilterElement(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__FilterElement(struct soap *soap, ngwt__FilterElement *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FilterElement); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__FilterElement); if (soap_out_PointerTongwt__FilterElement(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90604,7 +90604,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DocumentType(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DocumentType(struct soap *soap, ngwt__DocumentType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DocumentType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DocumentType); if (soap_out_PointerTongwt__DocumentType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90656,7 +90656,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AgeAction(struct soap * SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AgeAction(struct soap *soap, enum ngwt__AgeAction *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AgeAction); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AgeAction); if (soap_out_PointerTongwt__AgeAction(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90706,7 +90706,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__SendOptions(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__SendOptions(struct soap *soap, ngwt__SendOptions *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SendOptions); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__SendOptions); if (soap_out_PointerTongwt__SendOptions(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90759,7 +90759,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__RecipientList(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__RecipientList(struct soap *soap, ngwt__RecipientList *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecipientList); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__RecipientList); if (soap_out_PointerTongwt__RecipientList(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90812,7 +90812,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__From(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__From(struct soap *soap, ngwt__From *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__From); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__From); if (soap_out_PointerTongwt__From(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90864,7 +90864,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToint(struct soap *soap, int *c SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToint(struct soap *soap, int *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToint); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToint); if (soap_out_PointerToint(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90914,7 +90914,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__DayOfYearWeek(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__DayOfYearWeek(struct soap *soap, ngwt__DayOfYearWeek *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfYearWeek); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__DayOfYearWeek); if (soap_out_PointerTongwt__DayOfYearWeek(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -90967,7 +90967,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Custom(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Custom(struct soap *soap, ngwt__Custom *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Custom); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Custom); if (soap_out_PointerTongwt__Custom(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91019,7 +91019,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__CustomType(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__CustomType(struct soap *soap, enum ngwt__CustomType *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CustomType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__CustomType); if (soap_out_PointerTongwt__CustomType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91069,7 +91069,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__uid(struct soap *soap, SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__uid(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__uid); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__uid); if (soap_out_PointerTongwt__uid(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91119,7 +91119,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__Category(struct soap *s SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__Category(struct soap *soap, ngwt__Category *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Category); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__Category); if (soap_out_PointerTongwt__Category(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91172,7 +91172,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToxsd__base64Binary(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__base64Binary(struct soap *soap, xsd__base64Binary *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToxsd__base64Binary); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerToxsd__base64Binary); if (soap_out_PointerToxsd__base64Binary(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91224,7 +91224,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTounsignedLong(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTounsignedLong(struct soap *soap, unsigned long *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTounsignedLong); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTounsignedLong); if (soap_out_PointerTounsignedLong(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91274,7 +91274,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTostd__string(struct soap *soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTostd__string(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTostd__string); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTostd__string); if (soap_out_PointerTostd__string(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91324,7 +91324,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AttachmentID(struct soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AttachmentID(struct soap *soap, ngwt__AttachmentID *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AttachmentID); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AttachmentID); if (soap_out_PointerTongwt__AttachmentID(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91377,7 +91377,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AttachmentItemInfo(stru SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AttachmentItemInfo(struct soap *soap, ngwt__AttachmentItemInfo *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AttachmentItemInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AttachmentItemInfo); if (soap_out_PointerTongwt__AttachmentItemInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91430,7 +91430,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AddressBook(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AddressBook(struct soap *soap, ngwt__AddressBook *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AddressBook); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AddressBook); if (soap_out_PointerTongwt__AddressBook(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91483,7 +91483,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessRightEntry(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessRightEntry(struct soap *soap, ngwt__AccessRightEntry *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRightEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessRightEntry); if (soap_out_PointerTongwt__AccessRightEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91535,7 +91535,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTobool(struct soap *soap, bool SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTobool(struct soap *soap, bool *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTobool); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTobool); if (soap_out_PointerTobool(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91585,7 +91585,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTongwt__AccessControlListEntry( SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTongwt__AccessControlListEntry(struct soap *soap, ngwt__AccessControlListEntry *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessControlListEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTongwt__AccessControlListEntry); if (soap_out_PointerTongwt__AccessControlListEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91637,7 +91637,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTounsignedByte(struct soap *soa SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTounsignedByte(struct soap *soap, unsigned char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTounsignedByte); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_PointerTounsignedByte); if (soap_out_PointerTounsignedByte(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91689,7 +91689,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__TQName(struct soap *soap, char *const SOAP_FMAC3 int SOAP_FMAC4 soap_put__TQName(struct soap *soap, char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE__TQName); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE__TQName); if (soap_out__TQName(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91729,7 +91729,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_string(struct soap *soap, char *const* SOAP_FMAC3 int SOAP_FMAC4 soap_put_string(struct soap *soap, char *const*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_string); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_string); if (soap_out_string(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91765,7 +91765,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Filt SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__FilterElement(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FilterElement); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FilterElement); if (soap_out_std__vectorTemplateOfPointerTongwt__FilterElement(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91866,7 +91866,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Cont SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__ContainerRef(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ContainerRef); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ContainerRef); if (soap_out_std__vectorTemplateOfPointerTongwt__ContainerRef(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -91965,7 +91965,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfngwe__EventType(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfngwe__EventType(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwe__EventType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwe__EventType); if (soap_out_std__vectorTemplateOfngwe__EventType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92066,7 +92066,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwe__Even SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwe__Events(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwe__Events); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwe__Events); if (soap_out_std__vectorTemplateOfPointerTongwe__Events(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92167,7 +92167,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwe__Even SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwe__Event(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwe__Event); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwe__Event); if (soap_out_std__vectorTemplateOfPointerTongwe__Event(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92268,7 +92268,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfstring(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfstring(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfstring); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfstring); if (soap_out_std__vectorTemplateOfstring(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92369,7 +92369,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Modi SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__ModifyItem(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ModifyItem); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ModifyItem); if (soap_out_std__vectorTemplateOfPointerTongwt__ModifyItem(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92470,7 +92470,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Host SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Host(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Host); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Host); if (soap_out_std__vectorTemplateOfPointerTongwt__Host(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92571,7 +92571,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__User SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__UserInfo(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__UserInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__UserInfo); if (soap_out_std__vectorTemplateOfPointerTongwt__UserInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92672,7 +92672,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Time SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Timezone(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Timezone); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Timezone); if (soap_out_std__vectorTemplateOfPointerTongwt__Timezone(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92773,7 +92773,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Sign SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Signature(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Signature); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Signature); if (soap_out_std__vectorTemplateOfPointerTongwt__Signature(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92874,7 +92874,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Sett SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__SettingsGroup(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__SettingsGroup); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__SettingsGroup); if (soap_out_std__vectorTemplateOfPointerTongwt__SettingsGroup(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -92975,7 +92975,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Rule SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Rule(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Rule); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Rule); if (soap_out_std__vectorTemplateOfPointerTongwt__Rule(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93076,7 +93076,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Rule SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__RuleAction(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__RuleAction); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__RuleAction); if (soap_out_std__vectorTemplateOfPointerTongwt__RuleAction(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93177,7 +93177,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfxsd__date(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfxsd__date(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfxsd__date); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfxsd__date); if (soap_out_std__vectorTemplateOfxsd__date(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93278,7 +93278,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Dele SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__DelegateeStatus(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__DelegateeStatus); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__DelegateeStatus); if (soap_out_std__vectorTemplateOfPointerTongwt__DelegateeStatus(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93379,7 +93379,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Reci SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Recipient(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Recipient); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Recipient); if (soap_out_std__vectorTemplateOfPointerTongwt__Recipient(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93480,7 +93480,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Prox SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__ProxyUser(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ProxyUser); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ProxyUser); if (soap_out_std__vectorTemplateOfPointerTongwt__ProxyUser(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93581,7 +93581,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Prob SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__ProblemEntry(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ProblemEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ProblemEntry); if (soap_out_std__vectorTemplateOfPointerTongwt__ProblemEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93682,7 +93682,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Post SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__PostalAddress(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__PostalAddress); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__PostalAddress); if (soap_out_std__vectorTemplateOfPointerTongwt__PostalAddress(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93783,7 +93783,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Phon SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__PhoneNumber(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__PhoneNumber); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__PhoneNumber); if (soap_out_std__vectorTemplateOfPointerTongwt__PhoneNumber(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93882,7 +93882,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfngwt__Month(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfngwt__Month(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__Month); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__Month); if (soap_out_std__vectorTemplateOfngwt__Month(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -93983,7 +93983,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Mess SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__MessagePart(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__MessagePart); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__MessagePart); if (soap_out_std__vectorTemplateOfPointerTongwt__MessagePart(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94084,7 +94084,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Libr SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Library(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Library); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Library); if (soap_out_std__vectorTemplateOfPointerTongwt__Library(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94185,7 +94185,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Junk SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__JunkEntry(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__JunkEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__JunkEntry); if (soap_out_std__vectorTemplateOfPointerTongwt__JunkEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94286,7 +94286,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Item SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Item(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Item); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Item); if (soap_out_std__vectorTemplateOfPointerTongwt__Item(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94387,7 +94387,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__ImAd SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__ImAddress(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ImAddress); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__ImAddress); if (soap_out_std__vectorTemplateOfPointerTongwt__ImAddress(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94488,7 +94488,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Grou SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__GroupMember(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__GroupMember); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__GroupMember); if (soap_out_std__vectorTemplateOfPointerTongwt__GroupMember(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94589,7 +94589,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Free SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__FreeBusyInfo(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FreeBusyInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FreeBusyInfo); if (soap_out_std__vectorTemplateOfPointerTongwt__FreeBusyInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94690,7 +94690,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Name SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__NameAndEmail(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__NameAndEmail); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__NameAndEmail); if (soap_out_std__vectorTemplateOfPointerTongwt__NameAndEmail(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94791,7 +94791,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Free SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__FreeBusyBlock(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FreeBusyBlock); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FreeBusyBlock); if (soap_out_std__vectorTemplateOfPointerTongwt__FreeBusyBlock(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94892,7 +94892,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Fold SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Folder(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Folder); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Folder); if (soap_out_std__vectorTemplateOfPointerTongwt__Folder(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -94993,7 +94993,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Fold SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__FolderACLEntry(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FolderACLEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__FolderACLEntry); if (soap_out_std__vectorTemplateOfPointerTongwt__FolderACLEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95094,7 +95094,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfstd__string(struct SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfstd__string(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfstd__string); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfstd__string); if (soap_out_std__vectorTemplateOfstd__string(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95195,7 +95195,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Docu SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__DocumentType(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__DocumentType); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__DocumentType); if (soap_out_std__vectorTemplateOfPointerTongwt__DocumentType(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95296,7 +95296,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__DayO SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__DayOfYearWeek(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__DayOfYearWeek); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__DayOfYearWeek); if (soap_out_std__vectorTemplateOfPointerTongwt__DayOfYearWeek(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95395,7 +95395,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfngwt__DayOfYear(str SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfngwt__DayOfYear(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__DayOfYear); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__DayOfYear); if (soap_out_std__vectorTemplateOfngwt__DayOfYear(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95494,7 +95494,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfngwt__DayOfMonth(st SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfngwt__DayOfMonth(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__DayOfMonth); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__DayOfMonth); if (soap_out_std__vectorTemplateOfngwt__DayOfMonth(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95595,7 +95595,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Cust SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Custom(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Custom); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Custom); if (soap_out_std__vectorTemplateOfPointerTongwt__Custom(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95696,7 +95696,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfngwt__uid(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfngwt__uid(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__uid); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__uid); if (soap_out_std__vectorTemplateOfngwt__uid(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95797,7 +95797,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Cate SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__Category(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Category); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__Category); if (soap_out_std__vectorTemplateOfPointerTongwt__Category(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95896,7 +95896,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfngwt__CalendarFolde SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfngwt__CalendarFolderFlags(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__CalendarFolderFlags); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfngwt__CalendarFolderFlags); if (soap_out_std__vectorTemplateOfngwt__CalendarFolderFlags(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -95997,7 +95997,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Atta SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__AttachmentItemInfo(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AttachmentItemInfo); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AttachmentItemInfo); if (soap_out_std__vectorTemplateOfPointerTongwt__AttachmentItemInfo(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -96098,7 +96098,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Addr SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__AddressBook(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AddressBook); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AddressBook); if (soap_out_std__vectorTemplateOfPointerTongwt__AddressBook(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -96199,7 +96199,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Acce SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__AccessRightEntry(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AccessRightEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AccessRightEntry); if (soap_out_std__vectorTemplateOfPointerTongwt__AccessRightEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); @@ -96300,7 +96300,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerTongwt__Acce SOAP_FMAC3 int SOAP_FMAC4 soap_put_std__vectorTemplateOfPointerTongwt__AccessControlListEntry(struct soap *soap, const std::vector*a, const char *tag, const char *type) { - register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AccessControlListEntry); + int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_std__vectorTemplateOfPointerTongwt__AccessControlListEntry); if (soap_out_std__vectorTemplateOfPointerTongwt__AccessControlListEntry(soap, tag, id, a, type)) return soap->error; return soap_putindependent(soap); diff --git a/tderesources/groupwise/soap/stdsoap2.cpp b/tderesources/groupwise/soap/stdsoap2.cpp index 72c464d2..b83b2bb4 100644 --- a/tderesources/groupwise/soap/stdsoap2.cpp +++ b/tderesources/groupwise/soap/stdsoap2.cpp @@ -416,7 +416,7 @@ static int tcp_done = 0; #ifndef PALM_1 static int fsend(struct soap *soap, const char *s, size_t n) -{ register int nwritten; +{ int nwritten; #if defined(__cplusplus) && !defined(WITH_LEAN) if (soap->os) { soap->os->write(s, n); @@ -443,7 +443,7 @@ fsend(struct soap *soap, const char *s, size_t n) FD_ZERO(&fd); FD_SET((SOAP_SOCKET)soap->socket, &fd); for (;;) - { register int r = select((SOAP_SOCKET)(soap->socket + 1), NULL, &fd, &fd, &timeout); + { int r = select((SOAP_SOCKET)(soap->socket + 1), NULL, &fd, &fd, &timeout); if (r > 0) break; if (!r) @@ -566,7 +566,7 @@ int SOAP_FMAC2 soap_flush_raw(struct soap *soap, const char *s, size_t n) { if ((soap->mode & SOAP_IO) == SOAP_IO_STORE) - { register char *t; + { char *t; if (!(t = (char*)soap_push_block(soap, n))) return soap->error = SOAP_EOM; memcpy(t, s, n); @@ -647,7 +647,7 @@ soap_send_raw(struct soap *soap, const char *s, size_t n) return SOAP_OK; } if (soap->mode & SOAP_IO) - { register size_t i = SOAP_BUFLEN - soap->bufidx; + { size_t i = SOAP_BUFLEN - soap->bufidx; while (n >= i) { memcpy(soap->buf + soap->bufidx, s, i); soap->bufidx = SOAP_BUFLEN; @@ -711,7 +711,7 @@ soap_send3(struct soap *soap, const char *s1, const char *s2, const char *s3) #ifndef PALM_1 static size_t frecv(struct soap *soap, char *s, size_t n) -{ register int r; +{ int r; soap->errnum = 0; #if defined(__cplusplus) && !defined(WITH_LEAN) if (soap->is) @@ -867,13 +867,13 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_recv_raw(struct soap *soap) -{ register size_t ret; +{ size_t ret; #ifdef WITH_ZLIB if (soap->mode & SOAP_ENC_ZLIB) { if (soap->d_stream.next_out == Z_NULL) return EOF; if (soap->d_stream.avail_in || !soap->d_stream.avail_out) - { register int r; + { int r; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Inflating\n")); soap->d_stream.next_out = (Byte*)soap->buf; soap->d_stream.avail_out = SOAP_BUFLEN; @@ -918,7 +918,7 @@ chunk_again: soap->chunksize -= ret; } else - { register soap_wchar c; + { soap_wchar c; char *t, tmp[8]; t = tmp; if (!soap->chunkbuflen) @@ -980,7 +980,7 @@ chunk_again: #endif #ifdef WITH_ZLIB if (soap->mode & SOAP_ENC_ZLIB) - { register int r; + { int r; memcpy(soap->z_buf, soap->buf, SOAP_BUFLEN); soap->d_stream.next_in = (Byte*)(soap->z_buf + soap->bufidx); soap->d_stream.avail_in = (unsigned int)ret; @@ -1093,7 +1093,7 @@ SOAP_FMAC1 soap_wchar SOAP_FMAC2 soap_getchar(struct soap *soap) -{ register soap_wchar c; +{ soap_wchar c; if (soap->ahead) { c = soap->ahead; soap->ahead = 0; @@ -1152,9 +1152,9 @@ soap_str_code(const struct soap_code_map *map, long code) static soap_wchar soap_char(struct soap *soap) { char tmp[8]; - register int i; - register soap_wchar c; - register char *s = tmp; + int i; + soap_wchar c; + char *s = tmp; for (i = 0; i < 7; i++) { c = soap_get1(soap); if (c == ';' || (int)c == EOF) @@ -1211,7 +1211,7 @@ SOAP_FMAC1 soap_wchar SOAP_FMAC2 soap_get(struct soap *soap) -{ register soap_wchar c; +{ soap_wchar c; c = soap->ahead; if (c) soap->ahead = 0; @@ -1239,7 +1239,7 @@ soap_get(struct soap *soap) do c = soap_get1(soap); while (soap_blank(c)); if (c == '!' || c == '?' || c == '%') - { register int k = 1; + { int k = 1; if (c == '!') { c = soap_get1(soap); if (c == '[') @@ -1325,7 +1325,7 @@ soap_tell(struct soap *soap) SOAP_FMAC1 int SOAP_FMAC2 -soap_pututf8(struct soap *soap, register unsigned long c) +soap_pututf8(struct soap *soap, unsigned long c) { char tmp[16]; if (c > 0 && c < 0x80) { *tmp = (char)c; @@ -1333,7 +1333,7 @@ soap_pututf8(struct soap *soap, register unsigned long c) } #ifndef WITH_LEAN if (soap->mode & SOAP_XML_CANONICAL) - { register char *t = tmp; + { char *t = tmp; if (c < 0x0800) *t++ = (char)(0xC0 | ((c >> 6) & 0x1F)); else @@ -1371,7 +1371,7 @@ SOAP_FMAC1 soap_wchar SOAP_FMAC2 soap_getutf8(struct soap *soap) -{ register soap_wchar c, c1, c2, c3, c4; +{ soap_wchar c, c1, c2, c3, c4; c = soap_get(soap); if (c < 0x80 || (soap->mode & SOAP_ENC_LATIN)) return c; @@ -1403,7 +1403,7 @@ int SOAP_FMAC2 soap_puthex(struct soap *soap, const unsigned char *s, int n) { char d[2]; - register int i; + int i; #ifdef WITH_DOM if ((soap->mode & SOAP_XML_DOM) && soap->dom) { if (!(soap->dom->data = soap_s2hex(soap, s, NULL, n))) @@ -1412,7 +1412,7 @@ soap_puthex(struct soap *soap, const unsigned char *s, int n) } #endif for (i = 0; i < n; i++) - { register int m = *s++; + { int m = *s++; d[0] = (char)((m >> 4) + (m > 159 ? '7' : '0')); m &= 0x0F; d[1] = (char)(m + (m > 9 ? '7' : '0')); @@ -1433,16 +1433,16 @@ soap_gethex(struct soap *soap, int *n) #ifdef WITH_FAST soap->labidx = 0; for (;;) - { register char *s; - register int i, k; + { char *s; + int i, k; if (soap_append_lab(soap, NULL, 0)) return NULL; s = soap->labbuf + soap->labidx; k = soap->lablen - soap->labidx; soap->labidx = soap->lablen; for (i = 0; i < k; i++) - { register char d1, d2; - register soap_wchar c; + { char d1, d2; + soap_wchar c; c = soap_get(soap); if (soap_isxdigit(c)) { d1 = (char)c; @@ -1471,15 +1471,15 @@ soap_gethex(struct soap *soap, int *n) if (soap_new_block(soap)) return NULL; for (;;) - { register int i; - register char *s = (char*)soap_push_block(soap, SOAP_BLKLEN); + { int i; + char *s = (char*)soap_push_block(soap, SOAP_BLKLEN); if (!s) { soap_end_block(soap); return NULL; } for (i = 0; i < SOAP_BLKLEN; i++) - { register char d1, d2; - register soap_wchar c = soap_get(soap); + { char d1, d2; + soap_wchar c = soap_get(soap); if (soap_isxdigit(c)) { d1 = (char)c; c = soap_get(soap); @@ -1512,8 +1512,8 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_putbase64(struct soap *soap, const unsigned char *s, int n) -{ register int i; - register unsigned long m; +{ int i; + unsigned long m; char d[4]; if (!s) return SOAP_OK; @@ -1560,8 +1560,8 @@ soap_getbase64(struct soap *soap, int *n, int malloc_flag) #ifdef WITH_FAST soap->labidx = 0; for (;;) - { register int i, k; - register char *s; + { int i, k; + char *s; if (soap_append_lab(soap, NULL, 2)) return NULL; s = soap->labbuf + soap->labidx; @@ -1570,10 +1570,10 @@ soap_getbase64(struct soap *soap, int *n, int malloc_flag) if (!s) return NULL; for (i = 0; i < k; i += 3) - { register unsigned long m = 0; - register int j = 0; + { unsigned long m = 0; + int j = 0; do - { register soap_wchar c = soap_get(soap); + { soap_wchar c = soap_get(soap); if (c == '=' || c < 0) { unsigned char *p; switch (j) @@ -1613,17 +1613,17 @@ soap_getbase64(struct soap *soap, int *n, int malloc_flag) if (soap_new_block(soap)) return NULL; for (;;) - { register int i; - register char *s = (char*)soap_push_block(soap, 3 * SOAP_BLKLEN); /* must be multiple of 3 */ + { int i; + char *s = (char*)soap_push_block(soap, 3 * SOAP_BLKLEN); /* must be multiple of 3 */ if (!s) { soap_end_block(soap); return NULL; } for (i = 0; i < SOAP_BLKLEN; i++) - { register unsigned long m = 0; - register int j = 0; + { unsigned long m = 0; + int j = 0; do - { register soap_wchar c = soap_get(soap); + { soap_wchar c = soap_get(soap); if (c == '=' || c < 0) { unsigned char *p; i *= 3; @@ -1785,12 +1785,12 @@ soap_pop_block(struct soap *soap) static void soap_update_ptrs(struct soap *soap, char *start, char *end, long offset) { int i; - register struct soap_ilist *ip; - register struct soap_flist *fp; + struct soap_ilist *ip; + struct soap_flist *fp; #ifndef WITH_LEANER - register struct soap_xlist *xp; + struct soap_xlist *xp; #endif - register void *p, **q; + void *p, **q; for (i = 0; i < SOAP_IDHASH; i++) { for (ip = soap->iht[i]; ip; ip = ip->next) { if (ip->ptr && (char*)ip->ptr >= start && (char*)ip->ptr < end) @@ -1838,11 +1838,11 @@ soap_update_ptrs(struct soap *soap, char *start, char *end, long offset) #ifndef WITH_NOIDREF #ifndef PALM_1 static int -soap_has_copies(struct soap *soap, register const char *start, register const char *end) -{ register int i; - register struct soap_ilist *ip; - register struct soap_flist *fp; - register const char *p; +soap_has_copies(struct soap *soap, const char *start, const char *end) +{ int i; + struct soap_ilist *ip; + struct soap_flist *fp; + const char *p; for (i = 0; i < SOAP_IDHASH; i++) { for (ip = soap->iht[i]; ip; ip = ip->next) { for (p = (const char*)ip->copy; p; p = *(const char**)p) @@ -1865,15 +1865,15 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_resolve(struct soap *soap) -{ register int i; - register struct soap_ilist *ip; - register struct soap_flist *fp; +{ int i; + struct soap_ilist *ip; + struct soap_flist *fp; short flag; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving forwarded data\n")); for (i = 0; i < SOAP_IDHASH; i++) { for (ip = soap->iht[i]; ip; ip = ip->next) { if (ip->ptr) - { register void *p, **q, *r; + { void *p, **q, *r; q = (void**)ip->link; ip->link = NULL; r = ip->ptr; @@ -1899,7 +1899,7 @@ soap_resolve(struct soap *soap) { for (ip = soap->iht[i]; ip; ip = ip->next) { if (ip->ptr && !soap_has_copies(soap, (const char*)ip->ptr, (const char*)ip->ptr + ip->size)) { if (ip->copy) - { register void *p, **q = (void**)ip->copy; + { void *p, **q = (void**)ip->copy; DBGLOG(TEST, if (q) SOAP_MESSAGE(fdebug, "Traversing copy chain to resolve id='%s'\n", ip->id)); ip->copy = NULL; do @@ -1911,11 +1911,11 @@ soap_resolve(struct soap *soap) flag = 1; } for (fp = ip->flist; fp; fp = ip->flist) - { register unsigned int k = fp->level; - register void *p = ip->ptr; + { unsigned int k = fp->level; + void *p = ip->ptr; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving forwarded data type=%d location=%p level=%u,%u id='%s'\n", ip->type, p, ip->level, fp->level, ip->id)); while (ip->level < k) - { register void **q = (void**)soap_malloc(soap, sizeof(void*)); + { void **q = (void**)soap_malloc(soap, sizeof(void*)); if (!q) return soap->error; *q = p; @@ -2044,8 +2044,8 @@ SOAP_FMAC1 char* SOAP_FMAC2 soap_save_block(struct soap *soap, char *p, int flag) -{ register size_t n; - register char *q, *s; +{ size_t n; + char *q, *s; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Save all blocks in contiguous memory space of %u bytes (%p->%p)\n", (unsigned int)soap->blist->size, soap->blist->ptr, p)); if (soap->blist->size) { if (!p) @@ -2137,7 +2137,7 @@ SOAP_FMAC1 char * SOAP_FMAC2 soap_putoffsets(struct soap *soap, const int *offset, int dim) -{ register int i; +{ int i; sprintf(soap->arrayOffset, "[%d", offset[0]); for (i = 1; i < dim; i++) sprintf(soap->arrayOffset + strlen(soap->arrayOffset), ",%d", offset[i]); @@ -2152,7 +2152,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_size(const int *size, int dim) -{ register int i, n = size[0]; +{ int i, n = size[0]; for (i = 1; i < dim; i++) n *= size[i]; return n; @@ -2165,7 +2165,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_getoffsets(const char *attr, const int *size, int *offset, int dim) -{ register int i, j = 0; +{ int i, j = 0; if (offset) for (i = 0; i < dim && attr && *attr; i++) { attr++; @@ -2190,7 +2190,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_getsize(const char *attr1, const char *attr2, int *j) -{ register int n, k; +{ int n, k; char *s; *j = 0; if (!*attr1) @@ -2229,7 +2229,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_getsizes(const char *attr, int *size, int dim) -{ register int i, k, n; +{ int i, k, n; if (!*attr) return -1; i = strlen(attr); @@ -2253,7 +2253,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_getposition(const char *attr, int *pos) -{ register int i, n; +{ int i, n; if (!*attr) return -1; n = 0; @@ -2275,8 +2275,8 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_push_namespace(struct soap *soap, const char *id, const char *ns) -{ register struct soap_nlist *np; - register struct Namespace *p; +{ struct soap_nlist *np; + struct Namespace *p; np = (struct soap_nlist*)SOAP_MALLOC(soap, sizeof(struct soap_nlist) + strlen(id)); if (!np) return soap->error = SOAP_EOM; @@ -2289,7 +2289,7 @@ soap_push_namespace(struct soap *soap, const char *id, const char *ns) DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Push namespace binding (level=%u) '%s' '%s'\n", soap->level, id, ns)); p = soap->local_namespaces; if (p) - { register short i = 0; + { short i = 0; for (; p->id; p++, i++) { if (p->ns && !strcmp(ns, p->ns)) { if (p->out) @@ -2332,7 +2332,7 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_pop_namespace(struct soap *soap) -{ register struct soap_nlist *np; +{ struct soap_nlist *np; while (soap->nlist && soap->nlist->level >= soap->level) { np = soap->nlist->next; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Popped namespace binding (level=%u) '%s'\n", soap->level, soap->nlist->id)); @@ -2350,7 +2350,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_match_namespace(struct soap *soap, const char *id1, const char *id2, int n1, int n2) -{ register struct soap_nlist *np = soap->nlist; +{ struct soap_nlist *np = soap->nlist; while (np && (strncmp(np->id, id1, n1) || np->id[n1])) np = np->next; if (np) @@ -2371,8 +2371,8 @@ int SOAP_FMAC2 soap_tag_cmp(const char *s, const char *t) { for (;;) - { register int c1 = *s; - register int c2 = *t; + { int c1 = *s; + int c2 = *t; if (!c1 || c1 == '"') break; if (c2 != '-') @@ -2418,7 +2418,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_match_tag(struct soap *soap, const char *tag1, const char *tag2) -{ register const char *s, *t; +{ const char *s, *t; if (!tag1 || !tag2 || !*tag2) return SOAP_OK; s = strchr(tag1, ':'); @@ -2844,7 +2844,7 @@ soap_done(struct soap *soap) soap_free_cookies(soap); #endif while (soap->plugins) - { register struct soap_plugin *p = soap->plugins->next; + { struct soap_plugin *p = soap->plugins->next; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Removing plugin '%s'\n", soap->plugins->id)); if (soap->plugins->fcopy || !soap->copy) soap->plugins->fdelete(soap, soap->plugins); @@ -2941,7 +2941,7 @@ soap_cleanup(struct soap *soap) #ifndef PALM_1 static const char* tcp_error(struct soap *soap) -{ register const char *msg = NULL; +{ const char *msg = NULL; switch (soap->errmode) { case 0: msg = soap_strerror(soap); @@ -2970,7 +2970,7 @@ tcp_error(struct soap *soap) #ifndef PALM_1 static const char* http_error(struct soap *soap, int status) -{ register const char *msg = SOAP_STR_EOS; +{ const char *msg = SOAP_STR_EOS; #ifndef WITH_LEAN msg = soap_str_code(h_http_error_codes, status); if (!msg) @@ -3059,7 +3059,7 @@ tcp_connect(struct soap *soap, const char *endpoint, const char *host, int port) struct addrinfo hints, *res, *ressave; int err; #endif - register int fd; + int fd; #ifndef WITH_LEAN int len = SOAP_BUFLEN; int set = 1; @@ -3928,7 +3928,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_closesock(struct soap *soap) -{ register int status = soap->error; +{ int status = soap->error; if (status == SOAP_EOF || status == SOAP_TCP_ERROR || status == SOAP_SSL_ERROR || !soap->keep_alive) { if (soap->fclose && (soap->error = soap->fclose(soap))) return soap->error; @@ -3951,8 +3951,8 @@ soap_closesock(struct soap *soap) SOAP_FMAC1 size_t SOAP_FMAC2 -soap_hash(register const char *s) -{ register size_t h = 0; +soap_hash(const char *s) +{ size_t h = 0; while (*s) h = 65599*h + *s++; return h % SOAP_IDHASH; @@ -3965,7 +3965,7 @@ soap_hash(register const char *s) #ifndef PALM_1 static void soap_init_pht(struct soap *soap) -{ register int i; +{ int i; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Initializing pointer hashtable\n")); for (i = 0; i < (int)SOAP_PTRHASH; i++) soap->pht[i] = NULL; @@ -4011,8 +4011,8 @@ soap_new2(soap_mode imode, soap_mode omode) #ifndef PALM_1 static void soap_free_pht(struct soap *soap) -{ register struct soap_plist *pp, *next; - register int i; +{ struct soap_plist *pp, *next; + int i; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free pointer hashtable\n")); for (i = 0; i < (int)SOAP_PTRHASH; i++) { for (pp = soap->pht[i]; pp; pp = next) @@ -4032,7 +4032,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_embed(struct soap *soap, const void *p, const struct soap_array *a, int n, const char *tag, int type) -{ register int i; +{ int i; struct soap_plist *pp; if (soap->version != 1) soap->encoding = 1; @@ -4058,7 +4058,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_pointer_lookup(struct soap *soap, const void *p, int type, struct soap_plist **ppp) -{ register struct soap_plist *pp; +{ struct soap_plist *pp; *ppp = NULL; if (p) for (pp = soap->pht[soap_hash_ptr(p)]; pp; pp = pp->next) @@ -4080,8 +4080,8 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_pointer_enter(struct soap *soap, const void *p, const struct soap_array *a, int n, int type, struct soap_plist **ppp) -{ register int h; - register struct soap_plist *pp = *ppp = (struct soap_plist*)SOAP_MALLOC(soap, sizeof(struct soap_plist)); +{ int h; + struct soap_plist *pp = *ppp = (struct soap_plist*)SOAP_MALLOC(soap, sizeof(struct soap_plist)); if (!pp) return 0; if (a) @@ -4109,13 +4109,13 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_array_pointer_lookup(struct soap *soap, const void *p, const struct soap_array *a, int n, int type, struct soap_plist **ppp) -{ register struct soap_plist *pp; +{ struct soap_plist *pp; *ppp = NULL; if (!p || !a->__ptr) return 0; for (pp = soap->pht[soap_hash_ptr(a->__ptr)]; pp; pp = pp->next) { if (pp->type == type && pp->array && pp->array->__ptr == a->__ptr) - { register int i; + { int i; for (i = 0; i < n; i++) if (((const int*)&pp->array->__size)[i] != ((const int*)&a->__size)[i]) break; @@ -4350,7 +4350,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_array_reference(struct soap *soap, const void *p, const struct soap_array *a, int n, int t) -{ register int i; +{ int i; struct soap_plist *pp; if (!p) return 1; @@ -4551,7 +4551,7 @@ soap_attachment(struct soap *soap, const char *tag, int id, const void *p, const #ifndef PALM_1 static void soap_init_iht(struct soap *soap) -{ register int i; +{ int i; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Initializing ID hashtable\n")); for (i = 0; i < SOAP_IDHASH; i++) soap->iht[i] = NULL; @@ -4564,9 +4564,9 @@ soap_init_iht(struct soap *soap) #ifndef PALM_1 static void soap_free_iht(struct soap *soap) -{ register int i; - register struct soap_ilist *ip, *p; - register struct soap_flist *fp, *fq; +{ int i; + struct soap_ilist *ip, *p; + struct soap_flist *fp, *fq; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free ID hashtable\n")); for (i = 0; i < SOAP_IDHASH; i++) { for (ip = soap->iht[i]; ip; ip = p) @@ -4590,7 +4590,7 @@ SOAP_FMAC1 struct soap_ilist * SOAP_FMAC2 soap_lookup(struct soap *soap, const char *id) -{ register struct soap_ilist *ip; +{ struct soap_ilist *ip; for (ip = soap->iht[soap_hash(id)]; ip; ip = ip->next) if (!strcmp(ip->id, id)) return ip; @@ -4606,8 +4606,8 @@ SOAP_FMAC1 struct soap_ilist * SOAP_FMAC2 soap_enter(struct soap *soap, const char *id) -{ register size_t h; - register struct soap_ilist *ip; +{ size_t h; + struct soap_ilist *ip; ip = (struct soap_ilist*)SOAP_MALLOC(soap, sizeof(struct soap_ilist) + strlen(id)); if (ip) { h = soap_hash(id); @@ -4627,7 +4627,7 @@ SOAP_FMAC1 void* SOAP_FMAC2 soap_malloc(struct soap *soap, size_t n) -{ register char *p; +{ char *p; if (!n) return (void*)SOAP_NON_NULL; if (!soap) @@ -4651,7 +4651,7 @@ soap_malloc(struct soap *soap, size_t n) #ifdef SOAP_DEBUG static void soap_init_mht(struct soap *soap) -{ register int i; +{ int i; for (i = 0; i < (int)SOAP_PTRHASH; i++) soap->mht[i] = NULL; } @@ -4661,8 +4661,8 @@ soap_init_mht(struct soap *soap) #ifdef SOAP_DEBUG static void soap_free_mht(struct soap *soap) -{ register int i; - register struct soap_mlist *mp, *mq; +{ int i; + struct soap_mlist *mp, *mq; for (i = 0; i < (int)SOAP_PTRHASH; i++) { for (mp = soap->mht[i]; mp; mp = mq) { mq = mp->next; @@ -4681,10 +4681,10 @@ SOAP_FMAC1 void* SOAP_FMAC2 soap_track_malloc(struct soap *soap, const char *file, int line, size_t size) -{ register void *p = malloc(size); +{ void *p = malloc(size); if (soap) - { register int h = soap_hash_ptr(p); - register struct soap_mlist *mp = (struct soap_mlist*)malloc(sizeof(struct soap_mlist)); + { int h = soap_hash_ptr(p); + struct soap_mlist *mp = (struct soap_mlist*)malloc(sizeof(struct soap_mlist)); mp->next = soap->mht[h]; mp->ptr = p; mp->file = file; @@ -4702,8 +4702,8 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_track_free(struct soap *soap, const char *file, int line, void *p) -{ register int h = soap_hash_ptr(p); - register struct soap_mlist *mp; +{ int h = soap_hash_ptr(p); + struct soap_mlist *mp; for (mp = soap->mht[h]; mp; mp = mp->next) if (mp->ptr == p) break; @@ -4724,8 +4724,8 @@ soap_track_free(struct soap *soap, const char *file, int line, void *p) #ifdef SOAP_DEBUG static void soap_track_unlink(struct soap *soap, const void *p) -{ register int h = soap_hash_ptr(p); - register struct soap_mlist *mp; +{ int h = soap_hash_ptr(p); + struct soap_mlist *mp; for (mp = soap->mht[h]; mp; mp = mp->next) if (mp->ptr == p) break; @@ -4743,7 +4743,7 @@ soap_dealloc(struct soap *soap, void *p) { if (!soap) return; if (p) - { register char **q; + { char **q; for (q = (char**)&soap->alist; *q; q = *(char***)q) { if (p == (void*)(*q - *(size_t*)(*q + sizeof(void*)))) { *q = **(char***)q; @@ -4755,7 +4755,7 @@ soap_dealloc(struct soap *soap, void *p) soap_delete(soap, p); } else - { register char *q; + { char *q; while (soap->alist) { q = (char*)soap->alist; soap->alist = *(void**)q; @@ -4783,11 +4783,11 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_delete(struct soap *soap, void *p) -{ register struct soap_clist **cp = &soap->clist; +{ struct soap_clist **cp = &soap->clist; if (p) { while (*cp) { if (p == (*cp)->ptr) - { register struct soap_clist *q = *cp; + { struct soap_clist *q = *cp; *cp = q->next; q->fdelete(q); SOAP_FREE(soap, q); @@ -4799,7 +4799,7 @@ soap_delete(struct soap *soap, void *p) } else { while (*cp) - { register struct soap_clist *q = *cp; + { struct soap_clist *q = *cp; *cp = q->next; if (q->ptr == (void*)soap->fault) soap->fault = NULL; /* this was deallocated */ @@ -4818,7 +4818,7 @@ SOAP_FMAC1 struct soap_clist * SOAP_FMAC2 soap_link(struct soap *soap, void *p, int t, int n, void (*fdelete)(struct soap_clist*)) -{ register struct soap_clist *cp; +{ struct soap_clist *cp; if ((cp = (struct soap_clist*)SOAP_MALLOC(soap, sizeof(struct soap_clist)))) { cp->next = soap->clist; cp->type = t; @@ -4837,8 +4837,8 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_unlink(struct soap *soap, const void *p) -{ register char **q; - register struct soap_clist **cp; +{ char **q; + struct soap_clist **cp; if (!soap || !p) return; for (q = (char**)&soap->alist; *q; q = *(char***)q) @@ -4870,7 +4870,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_lookup_type(struct soap *soap, const char *id) -{ register struct soap_ilist *ip; +{ struct soap_ilist *ip; if (id && *id) { ip = soap_lookup(soap, id); if (ip) @@ -4996,7 +4996,7 @@ soap_id_forward(struct soap *soap, const char *href, void *p, int st, int tt, si return NULL; } if (fcopy || n < sizeof(void*) || *href != '#') - { register struct soap_flist *fp = (struct soap_flist*)SOAP_MALLOC(soap, sizeof(struct soap_flist)); + { struct soap_flist *fp = (struct soap_flist*)SOAP_MALLOC(soap, sizeof(struct soap_flist)); if (!fp) { soap->error = SOAP_EOM; return NULL; @@ -5294,10 +5294,10 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_free(struct soap *soap) -{ register struct Namespace *ns; +{ struct Namespace *ns; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free namespace stack\n")); while (soap->nlist) - { register struct soap_nlist *np = soap->nlist->next; + { struct soap_nlist *np = soap->nlist->next; if (soap->nlist->ns) SOAP_FREE(soap, soap->nlist->ns); SOAP_FREE(soap, soap->nlist); @@ -5308,7 +5308,7 @@ soap_free(struct soap *soap) soap_end_block(soap); DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Free attributes\n")); while (soap->attributes) - { register struct soap_attribute *tp = soap->attributes->next; + { struct soap_attribute *tp = soap->attributes->next; if (soap->attributes->value) SOAP_FREE(soap, soap->attributes->value); SOAP_FREE(soap, soap->attributes); @@ -5458,7 +5458,7 @@ struct soap* SOAP_FMAC2 soap_copy_context(struct soap *copy, struct soap *soap) { if (copy) - { register struct soap_plugin *p; + { struct soap_plugin *p; memcpy(copy, soap, sizeof(struct soap)); copy->copy = 1; copy->user = NULL; @@ -5498,7 +5498,7 @@ soap_copy_context(struct soap *copy, struct soap *soap) #endif copy->plugins = NULL; for (p = soap->plugins; p; p = p->next) - { register struct soap_plugin *q = (struct soap_plugin*)SOAP_MALLOC(copy, sizeof(struct soap_plugin)); + { struct soap_plugin *q = (struct soap_plugin*)SOAP_MALLOC(copy, sizeof(struct soap_plugin)); if (!q) return NULL; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying plugin '%s'\n", p->id)); @@ -5765,7 +5765,7 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_end(struct soap *soap) -{ register struct soap_clist *cp; +{ struct soap_clist *cp; soap_free(soap); soap_dealloc(soap, NULL); while (soap->clist) @@ -5789,9 +5789,9 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_set_namespaces(struct soap *soap, struct Namespace *p) -{ register struct Namespace *ns = soap->local_namespaces; - register struct soap_nlist *np, *nq, *nr; - register unsigned int level = soap->level; +{ struct Namespace *ns = soap->local_namespaces; + struct soap_nlist *np, *nq, *nr; + unsigned int level = soap->level; soap->namespaces = p; soap->local_namespaces = NULL; soap_set_local_namespaces(soap); @@ -5829,7 +5829,7 @@ soap_set_namespaces(struct soap *soap, struct Namespace *p) SOAP_FREE(soap, nq); } if (ns) - { register int i; + { int i; for (i = 0; ns[i].id; i++) { if (ns[i].out) { SOAP_FREE(soap, ns[i].out); @@ -5848,9 +5848,9 @@ soap_set_namespaces(struct soap *soap, struct Namespace *p) static void soap_set_local_namespaces(struct soap *soap) { if (soap->namespaces && !soap->local_namespaces) - { register const struct Namespace *ns1; - register struct Namespace *ns2; - register size_t n = 1; + { const struct Namespace *ns1; + struct Namespace *ns2; + size_t n = 1; for (ns1 = soap->namespaces; ns1->id; ns1++) n++; n *= sizeof(struct Namespace); @@ -5880,7 +5880,7 @@ soap_element(struct soap *soap, const char *tag, int id, const char *type) /**/ #ifdef WITH_DOM if (soap->mode & SOAP_XML_DOM) - { register struct soap_dom_element *p, *e = (struct soap_dom_element*)soap_malloc(soap, sizeof(struct soap_dom_element)); + { struct soap_dom_element *p, *e = (struct soap_dom_element*)soap_malloc(soap, sizeof(struct soap_dom_element)); e->next = NULL; e->prnt = soap->dom; e->nstr = NULL; @@ -5991,7 +5991,7 @@ SOAP_FMAC1 char* SOAP_FMAC2 soap_strrchr(const char *s, int t) -{ register char *r = NULL; +{ char *r = NULL; while (*s) if (*s++ == t) r = (char*)s - 1; @@ -6007,8 +6007,8 @@ SOAP_FMAC1 long SOAP_FMAC2 soap_strtol(const char *s, char **t, int b) -{ register long n = 0; - register int c; +{ long n = 0; + int c; while (*s > 0 && *s <= 32) s++; if (b == 10) @@ -6059,7 +6059,7 @@ unsigned long SOAP_FMAC2 soap_strtoul(const char *s, char **t, int b) { unsigned long n = 0; - register int c; + int c; while (*s > 0 && *s <= 32) s++; if (b == 10) @@ -6131,13 +6131,13 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_element_start_end_out(struct soap *soap, const char *tag) -{ register struct soap_attribute *tp; +{ struct soap_attribute *tp; /**/ #ifdef WITH_DOM if ((soap->mode & SOAP_XML_DOM) && soap->dom) { for (tp = soap->attributes; tp; tp = tp->next) { if (tp->visible) - { register struct soap_dom_attribute *a = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute)); + { struct soap_dom_attribute *a = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute)); a->next = soap->dom->atts; a->nstr = NULL; a->name = soap_strdup(soap, tp->name); /* check EOM */ @@ -6211,7 +6211,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_element_ref(struct soap *soap, const char *tag, int id, int href) -{ register int n = 0; +{ int n = 0; if (soap->version == 2) n = 1; sprintf(soap->href, "#_%d", href); @@ -6322,7 +6322,7 @@ soap_attribute(struct soap *soap, const char *name, const char *value) /**/ #ifdef WITH_DOM if ((soap->mode & SOAP_XML_DOM) && soap->dom) - { register struct soap_dom_attribute *a = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute)); + { struct soap_dom_attribute *a = (struct soap_dom_attribute*)soap_malloc(soap, sizeof(struct soap_dom_attribute)); a->next = soap->dom->atts; a->nstr = NULL; a->name = soap_strdup(soap, name); /* check EOM */ @@ -6383,10 +6383,10 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_element_end_in(struct soap *soap, const char *tag) -{ register soap_wchar c; - register char *s; - register const char *t; - register int n = 0; +{ soap_wchar c; + char *s; + const char *t; + int n = 0; if (tag && *tag == '-') return SOAP_OK; soap->level--; @@ -6449,7 +6449,7 @@ SOAP_FMAC1 const char * SOAP_FMAC2 soap_attr_value(struct soap *soap, const char *name, int flag) -{ register struct soap_attribute *tp; +{ struct soap_attribute *tp; for (tp = soap->attributes; tp; tp = tp->next) if (!soap_match_tag(soap, tp->name, name)) break; @@ -6471,7 +6471,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_set_attr(struct soap *soap, const char *name, const char *value) -{ register struct soap_attribute *tp; +{ struct soap_attribute *tp; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Set attribute %s='%s'\n", name, value?value:"")); for (tp = soap->attributes; tp; tp = tp->next) if (!strcmp(tp->name, name)) @@ -6549,7 +6549,7 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_clr_attr(struct soap *soap) -{ register struct soap_attribute *tp; +{ struct soap_attribute *tp; #ifndef WITH_LEAN if (soap->mode & SOAP_XML_CANONICAL) { while (soap->attributes) @@ -6632,7 +6632,7 @@ soap_getattrval(struct soap *soap, char *s, size_t n, soap_wchar d) static int soap_append_lab(struct soap *soap, const char *s, size_t n) { if (soap->labidx + n >= soap->lablen) - { register char *t = soap->labbuf; + { char *t = soap->labbuf; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Enlarging look-aside buffer to append data, old size=%lu", (unsigned long)soap->lablen)); if (soap->lablen == 0) soap->lablen = SOAP_LABLEN; @@ -6665,11 +6665,11 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_peek_element(struct soap *soap) -{ register struct soap_attribute *tp; +{ struct soap_attribute *tp; const char *t; - register char *s; - register soap_wchar c; - register int i; + char *s; + soap_wchar c; + int i; if (soap->peeked) { if (!*soap->tag) return soap->error = SOAP_NO_TAG; @@ -6955,9 +6955,9 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_string_out(struct soap *soap, const char *s, int flag) -{ register const char *t; - register soap_wchar c; - register soap_wchar mask = 0xFFFFFF80UL; +{ const char *t; + soap_wchar c; + soap_wchar mask = 0xFFFFFF80UL; #ifdef WITH_DOM if ((soap->mode & SOAP_XML_DOM) && soap->dom) { soap->dom->data = soap_strdup(soap, s); /* check EOM */ @@ -7018,7 +7018,7 @@ soap_string_out(struct soap *soap, const char *s, int flag) #ifdef HAVE_MBTOWC if (soap->mode & SOAP_C_MBSTRING) { wchar_t wc; - register int m = mbtowc(&wc, t - 1, MB_CUR_MAX); + int m = mbtowc(&wc, t - 1, MB_CUR_MAX); if (m > 0 && wc != c) { if (soap_send_raw(soap, s, t - s - 1) || soap_pututf8(soap, wc)) return soap->error; @@ -7045,13 +7045,13 @@ SOAP_FMAC1 char * SOAP_FMAC2 soap_string_in(struct soap *soap, int flag, long minlen, long maxlen) -{ register char *s; +{ char *s; char *t = NULL; - register size_t i; - register long l = 0; - register int n = 0; - register int m = 0; - register soap_wchar c; + size_t i; + long l = 0; + int n = 0; + int m = 0; + soap_wchar c; #if !defined(WITH_LEANER) && defined(HAVE_WCTOMB) char buf[MB_LEN_MAX > 8 ? MB_LEN_MAX : 8]; #else @@ -7060,7 +7060,7 @@ soap_string_in(struct soap *soap, int flag, long minlen, long maxlen) DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Reading string content\n")); #ifdef WITH_CDATA if (!flag) - { register int state = 0; + { int state = 0; #ifdef WITH_FAST soap->labidx = 0; /* use look-aside buffer */ #else @@ -7070,14 +7070,14 @@ soap_string_in(struct soap *soap, int flag, long minlen, long maxlen) for (;;) { #ifdef WITH_FAST - register size_t k; + size_t k; if (soap_append_lab(soap, NULL, 0)) /* allocate more space in look-aside buffer if necessary */ return NULL; s = soap->labbuf + soap->labidx; /* space to populate */ k = soap->lablen - soap->labidx; /* number of bytes available */ soap->labidx = soap->lablen; /* claim this space */ #else - register size_t k = SOAP_BLKLEN; + size_t k = SOAP_BLKLEN; if (!(s = (char*)soap_push_block(soap, k))) return NULL; #endif @@ -7279,14 +7279,14 @@ soap_string_in(struct soap *soap, int flag, long minlen, long maxlen) for (;;) { #ifdef WITH_FAST - register size_t k; + size_t k; if (soap_append_lab(soap, NULL, 0)) /* allocate more space in look-aside buffer if necessary */ return NULL; s = soap->labbuf + soap->labidx; /* space to populate */ k = soap->lablen - soap->labidx; /* number of bytes available */ soap->labidx = soap->lablen; /* claim this space */ #else - register size_t k = SOAP_BLKLEN; + size_t k = SOAP_BLKLEN; if (!(s = (char*)soap_push_block(soap, k))) return NULL; #endif @@ -7472,7 +7472,7 @@ SOAP_FMAC2 soap_wstring_out(struct soap *soap, const wchar_t *s, int flag) { const char *t; char tmp; - register soap_wchar c; + soap_wchar c; #ifdef WITH_DOM if ((soap->mode & SOAP_XML_DOM) && soap->dom) { soap->dom->wide = NULL; /* soap_malloc() ??? */ @@ -7541,9 +7541,9 @@ wchar_t * SOAP_FMAC2 soap_wstring_in(struct soap *soap, int flag, long minlen, long maxlen) { wchar_t *s; - register int i, n = 0; - register long l = 0; - register soap_wchar c; + int i, n = 0; + long l = 0; + soap_wchar c; const char *t = NULL; DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Reading wide string content\n")); if (soap->peeked && *soap->tag) @@ -8652,7 +8652,7 @@ soap_s2TQName(struct soap *soap, const char *s, char **t) np = soap->nlist; p = strchr(s, ':'); if (p) - { register int n = p - s; + { int n = p - s; while (np && (strncmp(np->id, s, n) || np->id[n])) np = np->next; p++; @@ -8664,7 +8664,7 @@ soap_s2TQName(struct soap *soap, const char *s, char **t) } if (np) { if (np->index >= 0 && soap->local_namespaces) - { register const char *q = soap->local_namespaces[np->index].id; + { const char *q = soap->local_namespaces[np->index].id; if (q) { if ((*t = (char*)soap_malloc(soap, strlen(p) + strlen(q) + 2))) sprintf(*t, "%s:%s", q, p); @@ -9191,9 +9191,9 @@ SOAP_FMAC1 const char * SOAP_FMAC2 soap_token(struct soap *soap) -{ register size_t i; - register soap_wchar c = 0; - register char *s = soap->tmpbuf; +{ size_t i; + soap_wchar c = 0; + char *s = soap->tmpbuf; if (!soap->body) return SOAP_STR_EOS; do c = soap_get(soap); @@ -9218,9 +9218,9 @@ SOAP_FMAC1 const char * SOAP_FMAC2 soap_value(struct soap *soap) -{ register size_t i; - register soap_wchar c = 0; - register char *s = soap->tmpbuf; +{ size_t i; + soap_wchar c = 0; + char *s = soap->tmpbuf; if (!soap->body) return SOAP_STR_EOS; do c = soap_get(soap); @@ -9284,8 +9284,8 @@ static size_t soap_count_attachments(struct soap *soap) { #ifndef WITH_LEANER - register struct soap_multipart *content; - register size_t count = soap->count; + struct soap_multipart *content; + size_t count = soap->count; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Calculating the message size with attachments, current count=%lu\n", count)); if ((soap->mode & SOAP_ENC_DIME) && !(soap->mode & SOAP_ENC_MTOM)) { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Calculating the size of DIME attachments\n")); @@ -9301,10 +9301,10 @@ soap_count_attachments(struct soap *soap) } } if ((soap->mode & SOAP_ENC_MIME) && soap->mime.boundary) - { register size_t n = strlen(soap->mime.boundary); + { size_t n = strlen(soap->mime.boundary); DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Calculating the size of MIME attachments\n")); for (content = soap->mime.first; content; content = content->next) - { register const char *s; + { const char *s; /* count \r\n--boundary\r\n */ count += 6 + n; /* count Content-Type: ...\r\n */ @@ -9506,9 +9506,9 @@ soap_putdime(struct soap *soap) #ifndef PALM_1 static char * soap_getdimefield(struct soap *soap, size_t n) -{ register soap_wchar c; - register int i; - register char *s; +{ soap_wchar c; + int i; + char *s; char *p = NULL; if (n) { p = (char*)soap_malloc(soap, n + 1); @@ -9540,9 +9540,9 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_getdimehdr(struct soap *soap) -{ register soap_wchar c; - register char *s; - register int i; +{ soap_wchar c; + char *s; + int i; unsigned char tmp[12]; size_t optlen, idlen, typelen; if (!(soap->mode & SOAP_ENC_DIME)) @@ -9599,7 +9599,7 @@ soap_getdime(struct soap *soap) if (soap_move(soap, ((soap->dime.size+3)&(~3))-soap_tell(soap))) return soap->error = SOAP_EOF; for (;;) - { register struct soap_multipart *content; + { struct soap_multipart *content; if (soap_getdimehdr(soap)) break; if (soap->fdimewriteopen && ((soap->dime.ptr = (char*)soap->fdimewriteopen(soap, soap->dime.id, soap->dime.type, soap->dime.options)) || soap->error)) @@ -9647,9 +9647,9 @@ end: } else if (soap->dime.flags & SOAP_DIME_CF) { const char *id, *type, *options; - register soap_wchar c; - register char *s; - register int i; + soap_wchar c; + char *s; + int i; id = soap->dime.id; type = soap->dime.type; options = soap->dime.options; @@ -9730,8 +9730,8 @@ soap_getmimehdr(struct soap *soap) return soap->error = SOAP_EOM; content = soap->mime.last; for (;;) - { register char *key = soap->msgbuf; - register char *val; + { char *key = soap->msgbuf; + char *val; if (!*key) break; DBGLOG(TEST,SOAP_MESSAGE(fdebug, "MIME header: %s\n", key)); @@ -9768,12 +9768,12 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_getmime(struct soap *soap) -{ register soap_wchar c; +{ soap_wchar c; if (!soap->mime.last) return SOAP_OK; for (;;) - { register size_t i, m = 0; - register char *s, *t = NULL; + { size_t i, m = 0; + char *s, *t = NULL; struct soap_multipart *content = soap->mime.last; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Parsing MIME content id=%s type=%s\n", content->id?content->id:"", content->type?content->type:"")); if (soap_new_block(soap)) @@ -9841,7 +9841,7 @@ end: #ifndef PALM_1 static int soap_match_cid(const char *s, const char *t) -{ register size_t n; +{ size_t n; if (!s) return 1; if (!strcmp(s, t)) @@ -9866,10 +9866,10 @@ soap_match_cid(const char *s, const char *t) static void soap_resolve_attachment(struct soap *soap, struct soap_multipart *content) { if (content->id) - { register struct soap_xlist **xp = &soap->xlist; + { struct soap_xlist **xp = &soap->xlist; DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Resolving attachment data for id=%s\n", content->id)); while (*xp) - { register struct soap_xlist *xq = *xp; + { struct soap_xlist *xq = *xp; if (!soap_match_cid(xq->id, content->id)) { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Found matching attachment %s for content id=%s\n", xq->id, content->id)); *xp = xq->next; @@ -10083,8 +10083,8 @@ soap_next_multipart(struct soap_multipart *content) static void soap_select_mime_boundary(struct soap *soap) { while (!soap->mime.boundary || soap_valid_mime_boundary(soap)) - { register char *s = soap->mime.boundary; - register size_t n = 0; + { char *s = soap->mime.boundary; + size_t n = 0; if (s) n = strlen(s); if (n < 16) @@ -10113,12 +10113,12 @@ soap_select_mime_boundary(struct soap *soap) #ifndef PALM_1 static int soap_valid_mime_boundary(struct soap *soap) -{ register struct soap_multipart *content; - register size_t k = strlen(soap->mime.boundary); +{ struct soap_multipart *content; + size_t k = strlen(soap->mime.boundary); for (content = soap->mime.first; content; content = content->next) { if (content->ptr && content->size >= k) - { register const char *p = (const char*)content->ptr; - register size_t i; + { const char *p = (const char*)content->ptr; + size_t i; for (i = 0; i < content->size - k; i++, p++) if (!strncmp(p, soap->mime.boundary, k)) return SOAP_ERR; @@ -10137,8 +10137,8 @@ SOAP_FMAC1 size_t SOAP_FMAC2 soap_encode_cookie(const char *s, char *t, size_t len) -{ register int c; - register size_t n = len; +{ int c; + size_t n = len; while ((c = *s++) && --n > 0) { if (c > ' ' && c < 128 && !strchr("()<>@,;:\\\"/[]?={}", c)) *t++ = c; @@ -11161,10 +11161,10 @@ SOAP_FMAC1 const char* SOAP_FMAC2 soap_get_header_attribute(struct soap *soap, const char *line, const char *key) -{ register const char *s = line; +{ const char *s = line; if (s) { while (*s) - { register short flag; + { short flag; s = soap_decode_key(soap->tmpbuf, sizeof(soap->tmpbuf), s); flag = soap_tag_cmp(soap->tmpbuf, key); s = soap_decode_val(soap->tmpbuf, sizeof(soap->tmpbuf), s); @@ -11312,7 +11312,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_envelope_begin_in(struct soap *soap) -{ register struct Namespace *p; +{ struct Namespace *p; soap->part = SOAP_IN_ENVELOPE; if (soap_element_begin_in(soap, "SOAP-ENV:Envelope", 0)) return soap->error = SOAP_VERSIONMISMATCH; @@ -11431,8 +11431,8 @@ SOAP_FMAC1 void SOAP_FMAC2 soap_set_endpoint(struct soap *soap, const char *endpoint) -{ register const char *s; - register size_t i, n; +{ const char *s; + size_t i, n; soap->endpoint[0] = '\0'; soap->host[0] = '\0'; soap->path[0] = '/'; @@ -11572,9 +11572,9 @@ SOAP_FMAC1 char* SOAP_FMAC2 soap_s2base64(struct soap *soap, const unsigned char *s, char *t, size_t n) -{ register size_t i; - register unsigned long m; - register char *p; +{ size_t i; + unsigned long m; + char *p; if (!t) t = (char*)soap_malloc(soap, (n + 2) / 3 * 4 + 1); if (!t) @@ -11616,9 +11616,9 @@ SOAP_FMAC1 const char* SOAP_FMAC2 soap_base642s(struct soap *soap, const char *s, char *t, size_t l, int *n) -{ register int i, j, c; - register unsigned long m; - register const char *p; +{ int i, j, c; + unsigned long m; + const char *p; if (!t) { l = (strlen(s) + 3) / 4 * 3; t = (char*)soap_malloc(soap, l); @@ -11680,7 +11680,7 @@ SOAP_FMAC1 char* SOAP_FMAC2 soap_s2hex(struct soap *soap, const unsigned char *s, char *t, size_t n) -{ register char *p; +{ char *p; if (!t) t = (char*)soap_malloc(soap, 2 * n + 1); if (!t) @@ -11691,7 +11691,7 @@ soap_s2hex(struct soap *soap, const unsigned char *s, char *t, size_t n) t[0] = '\0'; if (s) { for (; n > 0; n--) - { register int m = *s++; + { int m = *s++; *t++ = (char)((m >> 4) + (m > 159 ? 'a' - 10 : '0')); m &= 0x0F; *t++ = (char)(m + (m > 9 ? 'a' - 10 : '0')); @@ -11708,7 +11708,7 @@ SOAP_FMAC1 const char* SOAP_FMAC2 soap_hex2s(struct soap *soap, const char *s, char *t, size_t l, int *n) -{ register const char *p; +{ const char *p; if (!t) { l = strlen(s) / 2; t = (char*)soap_malloc(soap, l); @@ -11719,8 +11719,8 @@ soap_hex2s(struct soap *soap, const char *s, char *t, size_t l, int *n) } p = t; while (l > 1) - { register int d1 = *s++; - register int d2 = *s++; + { int d1 = *s++; + int d2 = *s++; *t++ = ((d1 >= 'A' ? (d1 & 0x7) + 9 : d1 - '0') << 4) + (d2 >= 'A' ? (d2 & 0x7) + 9 : d2 - '0'); l -= 2; } @@ -11737,11 +11737,11 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_puthttphdr(struct soap *soap, int status, size_t count) -{ register const char *s; +{ const char *s; #ifndef WITH_LEANER - register const char *r = NULL; + const char *r = NULL; #endif - register int err; + int err; if (status == SOAP_FILE && soap->http_content) s = soap->http_content; else if (status == SOAP_HTML) @@ -11760,7 +11760,7 @@ soap_puthttphdr(struct soap *soap, int status, size_t count) s = "application/dime"; } if ((soap->mode & SOAP_ENC_MIME) && soap->mime.boundary && soap->status != SOAP_GET) - { register const char *t = strchr(s, ';'); + { const char *t = strchr(s, ';'); sprintf(soap->tmpbuf, "multipart/related; boundary=\"%s\"; type=\"", soap->mime.boundary); if (t) strncat(soap->tmpbuf, s, t - s); @@ -11824,8 +11824,8 @@ http_get(struct soap *soap) #ifndef PALM_1 static int http_post(struct soap *soap, const char *endpoint, const char *host, int port, const char *path, const char *action, size_t count) -{ register const char *s; - register int err; +{ const char *s; + int err; if (soap->status == SOAP_GET) { s = "GET"; count = 0; @@ -11900,7 +11900,7 @@ http_post(struct soap *soap, const char *endpoint, const char *host, int port, c #ifndef PALM_1 static int http_send_header(struct soap *soap, const char *s) -{ register const char *t; +{ const char *t; do { t = strchr(s, '\n'); /* disallow \n in HTTP headers */ if (!t) @@ -11935,7 +11935,7 @@ http_post_header(struct soap *soap, const char *key, const char *val) #ifndef PALM_1 static int http_response(struct soap *soap, int status, size_t count) -{ register int err; +{ int err; #ifdef WMW_RPM_IO if (soap->rpmreqid) httpOutputEnable(soap->rpmreqid); @@ -12007,7 +12007,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_response(struct soap *soap, int status) -{ register size_t count; +{ size_t count; if (!(soap->omode & (SOAP_ENC_XML | SOAP_IO_STORE /* this tests for chunking too */)) && (status == SOAP_HTML || status == SOAP_FILE)) { soap->omode &= ~SOAP_IO; @@ -12019,7 +12019,7 @@ soap_response(struct soap *soap, int status) return soap->error; #ifndef WITH_NOHTTP if ((soap->mode & SOAP_IO) != SOAP_IO_STORE && !(soap->mode & SOAP_ENC_XML)) - { register int n = soap->mode; + { int n = soap->mode; soap->mode &= ~(SOAP_IO | SOAP_ENC_ZLIB); if ((n & SOAP_IO) != SOAP_IO_FLUSH) soap->mode |= SOAP_IO_BUFFER; @@ -12233,7 +12233,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_send_fault(struct soap *soap) -{ register int status = soap->error; +{ int status = soap->error; int r = 1; if (status == SOAP_STOP) return status; @@ -12295,7 +12295,7 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_recv_fault(struct soap *soap) -{ register int status = soap->error; +{ int status = soap->error; DBGLOG(TEST,SOAP_MESSAGE(fdebug, "Receiving SOAP Fault\n")); soap->error = SOAP_OK; if (soap_getfault(soap)) @@ -12305,7 +12305,7 @@ soap_recv_fault(struct soap *soap) soap_set_fault(soap); } else - { register const char *s = *soap_faultcode(soap); + { const char *s = *soap_faultcode(soap); if (!soap_match_tag(soap, s, "SOAP-ENV:Server") || !soap_match_tag(soap, s, "SOAP-ENV:Receiver")) status = SOAP_SVR_FAULT; else if (!soap_match_tag(soap, s, "SOAP-ENV:Client") || !soap_match_tag(soap, s, "SOAP-ENV:Sender")) @@ -12362,7 +12362,7 @@ soap_recv_empty_response(struct soap *soap) #ifndef PALM_1 static const char* soap_strerror(struct soap *soap) -{ register int err = soap->errnum; +{ int err = soap->errnum; if (err) { #ifndef WIN32 @@ -12384,7 +12384,7 @@ soap_set_error(struct soap *soap, const char *faultcode, const char *faultstring { *soap_faultcode(soap) = faultcode; *soap_faultstring(soap) = faultstring; if (faultdetail && *faultdetail) - { register const char **s = soap_faultdetail(soap); + { const char **s = soap_faultdetail(soap); if (s) *s = faultdetail; } @@ -12504,8 +12504,8 @@ SOAP_FMAC1 int SOAP_FMAC2 soap_register_plugin_arg(struct soap *soap, int (*fcreate)(struct soap*, struct soap_plugin*, void*), void *arg) -{ register struct soap_plugin *p; - register int r; +{ struct soap_plugin *p; + int r; if (!(p = (struct soap_plugin*)SOAP_MALLOC(soap, sizeof(struct soap_plugin)))) return soap->error = SOAP_EOM; p->id = NULL; @@ -12529,7 +12529,7 @@ soap_register_plugin_arg(struct soap *soap, int (*fcreate)(struct soap*, struct #ifndef PALM_1 static void * fplugin(struct soap *soap, const char *id) -{ register struct soap_plugin *p; +{ struct soap_plugin *p; for (p = soap->plugins; p; p = p->next) if (p->id == id || !strcmp(p->id, id)) return p->data;