Files
@ r4890:68a16fe574e1
Branch filter:
Location: cpp/openttd-patchpack/source/strings.h - annotation
r4890:68a16fe574e1
351 B
text/x-c
(svn r6828) -Fix: Properly fix r6842
r2186:5ee653b1b5e1 r2186:5ee653b1b5e1 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1312:cc3799d5ff15 r2063:f9227c383fe6 r2202:65185b96e219 r2202:65185b96e219 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r2436:963efe8b84cc | /* $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 */
|