Files @ r3747:5aa82ab659e3
Branch filter:

Location: cpp/openttd-patchpack/source/strings.h

miham
(svn r4735) WebTranslator2 update to 2006-05-04 16:19:23
czech - 1 changed by Hadez (1)
dutch - 3 fixed by webfreakz (3)
german - 1 fixed, 3 changed by Neonox (3), moewe2 (1)
hungarian - 2 changed by miham (2)
polish - 9 changed by meush (9)
portuguese - 3 fixed, 3 changed by izhirahider (6)
romanian - 58 fixed by kneekoo (58)
slovenian - 95 fixed by christooss (95)
turkish - 1 fixed by jnmbk (1)
/* $Id$ */

#ifndef STRINGS_H
#define STRINGS_H

static inline char* InlineString(char* buf, uint16 string)
{
	*buf++ = '\x81';
	*buf++ = string & 0xFF;
	*buf++ = string >> 8;
	return buf;
}

char *GetString(char *buffr, uint16 string);
char *GetStringWithArgs(char *buffr, uint string, const int32 *argv);

extern char _userstring[128];

void InjectDParam(int amount);
int32 GetParamInt32(void);

#endif /* STRINGS_H */