Files @ r4636:faafd6e28bc4
Branch filter:

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

miham
(svn r6504) WebTranslator2 update to 2006-09-24 17:53:26
czech - 1 changed by Hadez (1)
galician - 14 fixed by Condex (14)
norwegian - 49 fixed by oletk (49)
spanish - 14 fixed by eusebio (14)
/* $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);

extern char _userstring[128];

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

#endif /* STRINGS_H */