2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-02-06 08:18:00 +00:00
|
|
|
#ifndef STRINGS_H
|
|
|
|
#define STRINGS_H
|
|
|
|
|
2005-03-25 11:32:58 +00:00
|
|
|
static inline char* InlineString(char* buf, uint16 string)
|
|
|
|
{
|
|
|
|
*buf++ = '\x81';
|
|
|
|
*buf++ = string & 0xFF;
|
|
|
|
*buf++ = string >> 8;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2005-02-06 09:52:06 +00:00
|
|
|
char *GetString(char *buffr, uint16 string);
|
2005-07-17 10:18:23 +00:00
|
|
|
char *GetStringWithArgs(char *buffr, uint string, const int32 *argv);
|
2005-07-15 14:53:44 +00:00
|
|
|
|
2005-07-26 19:05:07 +00:00
|
|
|
extern char _userstring[128];
|
|
|
|
|
2005-02-06 08:18:00 +00:00
|
|
|
void InjectDParam(int amount);
|
|
|
|
int32 GetParamInt32(void);
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
#endif /* STRINGS_H */
|