Files @ r4967:b5ddfe6a542d
Branch filter:

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

miham
(svn r6969) WebTranslator2 update to 2006-10-27 19:12:49
american - 1 fixed by WhiteRabbit (1)
italian - 4 changed by sidew (4)
polish - 1 fixed, 1 changed by meush (2)
slovak - 4 fixed by lengyel (4)
/* $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, const char* last);

extern char _userstring[128];

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

#endif /* STRINGS_H */