strings.h
author belugas
Fri, 29 Sep 2006 16:57:12 +0000
changeset 4674 b699a0825f1a
parent 4416 442b18840569
child 4912 0f51b47cb983
permissions -rw-r--r--
(svn r6576) -CodeChange : Move depot_gui.c on "Gui Source codes" section of MSVC project 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);

extern char _userstring[128];

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

#endif /* STRINGS_H */