blob: 22ec9f39dece9701d3a51b382e040635b0b395ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* $Id$ */
/** @file strings.h */
#ifndef STRINGS_H
#define STRINGS_H
char *InlineString(char *buf, uint16 string);
char *GetString(char *buffr, uint16 string, const char* last);
extern char _userstring[128];
void InjectDParam(int amount);
int32 GetParamInt32();
bool ReadLanguagePack(int index);
void InitializeLanguagePacks();
int CDECL StringIDSorter(const void *a, const void *b);
#endif /* STRINGS_H */
|