mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
275e2f477a
- Feature: [strgen] Allow changing the order of parameters in translated strings. - Use {1:TOWN} syntax to set the order. - Codechange: [strgen] Rewrote lots of strgen internals.
20 lines
399 B
C
20 lines
399 B
C
#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, uint16 string, const int32 *argv);
|
|
|
|
void InjectDParam(int amount);
|
|
int32 GetParamInt32(void);
|
|
uint GetCurrentCurrencyRate(void);
|
|
|
|
#endif
|