blob: 3b220f4ba17db19714b016c04076347f3c23ea2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* $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();
#endif /* STRINGS_H */
|