strings.h
author miham
Sun, 22 Oct 2006 05:37:51 +0000
changeset 4917 21a2267b9283
parent 4912 0f51b47cb983
child 5108 aeaef6fe53b7
permissions -rw-r--r--
(svn r6893) WebTranslator2 update to 2006-10-22 07:37:19
estonian - 13 fixed, 8 changed by t2t2 (2), kristjans (19)
portuguese - 7 fixed by izhirahider (7)
turkish - 7 fixed by jnmbk (7)
/* $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 */