strings.h
author tron
Sat, 06 Aug 2005 14:59:54 +0000
changeset 2291 2b064aa97f91
parent 2202 2d6c235d53cc
child 2436 177cb6a8339f
permissions -rw-r--r--
(svn r2815) Store the currency information in one central place instead of scattering it in several unrelated files
/* $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