strings.h
author miham
Fri, 29 Sep 2006 09:44:32 +0000
changeset 4671 06ca1bcb7b9b
parent 4416 e0e9a72882d0
child 4912 d04b3f2bca70
permissions -rw-r--r--
(svn r6568) WebTranslator2 update to 2006-09-29 11:43:44
catalan - 1 changed by arnaullv (1)
french - 9 fixed by belugas (9)
german - 2 fixed by Neonox (2)
greek - 270 fixed by thanoulas (270)
slovak - 2 fixed by lengyel (2)
spanish - 2 fixed by eusebio (2)
swedish - 3 fixed by cjw (3)
/* $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 */