Files
@ r5093:287224e9627d
Branch filter:
Location: cpp/openttd-patchpack/source/strings.h - annotation
r5093:287224e9627d
369 B
text/x-c
(svn r7162) -CodeChange: disabled compilation of unused code (Darkvater)
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 r4912:d420151de4c6 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, const char* last);
extern char _userstring[128];
void InjectDParam(int amount);
int32 GetParamInt32(void);
#endif /* STRINGS_H */
|