(svn r21444) -Codechange: compute the type of elements in the argv string array on the fly and compare it with the type set by strgen

This commit is contained in:
yexo
2010-12-09 20:57:52 +00:00
parent 8a194a2b42
commit 475ac872c9
2 changed files with 102 additions and 78 deletions

View File

@@ -13,10 +13,11 @@
#define STRINGS_FUNC_H
#include "strings_type.h"
#include "string_type.h"
char *InlineString(char *buf, StringID string);
char *GetString(char *buffr, StringID string, const char *last);
char *GetStringWithArgs(char *buffr, uint string, int64 *argv, const int64 *argve, const char *last);
char *GetStringWithArgs(char *buffr, uint string, int64 *argv, const int64 *argve, const char *last, WChar *argt = NULL);
const char *GetStringPtr(StringID string);
void InjectDParam(uint amount);