(svn r21440) -Codechange: pass a pointer to just past the end of the argv array around in FormatString and friends

This commit is contained in:
yexo
2010-12-09 00:15:38 +00:00
parent 194d1faa8e
commit 12e0f28229
3 changed files with 64 additions and 63 deletions

View File

@@ -16,7 +16,7 @@
char *InlineString(char *buf, StringID string);
char *GetString(char *buffr, StringID string, const char *last);
char *GetStringWithArgs(char *buffr, uint string, int64 *argv, const char *last);
char *GetStringWithArgs(char *buffr, uint string, int64 *argv, const int64 *argve, const char *last);
const char *GetStringPtr(StringID string);
void InjectDParam(uint amount);