Home | History | Annotate | Download | only in src

Lines Matching refs:TEXTCHAR

108 static INT  GetArgFromString(INT argc, TEXTCHAR* argv[], TEXTCHAR* search_string, TEXTCHAR type, TEXTCHAR* found_string , INT* switches_used);
109 static void RemoveWhiteSpace(const TEXTCHAR* pReqArgs, TEXTCHAR* Removed);
110 static INT CheckArg(TEXTCHAR* arg, TEXTCHAR* str, UINT numArgs, TEXTCHAR type, TEXTCHAR* current_str);
111 static INT CheckForUnusedSwitches(INT argc, /*TEXTCHAR* argv[],*/ INT* switches_used);
112 static INT ParseString(TEXTCHAR* str, INT*, TEXTCHAR*, TEXTCHAR*);
113 static void GetNumberOfArgs(TEXTCHAR* str, INT* nArgs);
127 INT IIS_ScanCmdl(INT argc, TEXTCHAR* argv[], const TEXTCHAR* str, ...)
134 TEXTCHAR* s_str = 0;
135 TEXTCHAR* c_str_type = 0;
136 TEXTCHAR* str_clean = 0;
146 str_clean = (TEXTCHAR*) FDKcalloc((unsigned int)_tcslen(str), sizeof(TEXTCHAR));
156 s_str = (TEXTCHAR*) FDKcalloc(nArgs*CMDL_MAX_ARGC, sizeof(TEXTCHAR) );
157 c_str_type = (TEXTCHAR*) FDKcalloc(nArgs, sizeof(TEXTCHAR));
173 TEXTCHAR arg[CMDL_MAX_STRLEN] = {L'\0'};
174 TEXTCHAR* p_arg = arg;
175 TEXTCHAR* current_str = &(s_str[i*CMDL_MAX_ARGC]);
197 TEXTCHAR* tmp;
198 tmp = va_arg(ap, TEXTCHAR*);
298 void GetNumberOfArgs(TEXTCHAR* str, INT* nArgs)
309 INT ParseString(TEXTCHAR* str, INT* b_str_opt, TEXTCHAR* s_str, TEXTCHAR* c_str_type )
314 TEXTCHAR* str_start = 0;
315 TEXTCHAR* str_stop = 0;
380 void RemoveWhiteSpace(const TEXTCHAR* pReqArgs, TEXTCHAR* pRemoved)
399 INT GetArgFromString(INT argc, TEXTCHAR* argv[], TEXTCHAR* search_string, TEXTCHAR type, TEXTCHAR* found_string, INT* sw_used )
441 INT CheckArg(TEXTCHAR* arg, TEXTCHAR* str, UINT numArgs, TEXTCHAR type, TEXTCHAR* cur_str)
484 INT CheckForUnusedSwitches(INT argc, /*TEXTCHAR* argv[],*/ INT* switches_used)
507 int IIS_ProcessCmdlList(const char* param_filename, int (*pFunction)(int, TEXTCHAR**))