author | KUDr |
Sun, 15 Apr 2007 14:20:35 +0000 | |
branch | cpp_gui |
changeset 6305 | aa0faea50ab5 |
parent 6303 | 84c215fc8eb8 |
child 6307 | f40e88cff863 |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
1309
dab90d4cbf2d
(svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents:
diff
changeset
|
3 |
#ifndef STRINGS_H |
dab90d4cbf2d
(svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents:
diff
changeset
|
4 |
#define STRINGS_H |
dab90d4cbf2d
(svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents:
diff
changeset
|
5 |
|
5108
dc67d70b5a45
(svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents:
4912
diff
changeset
|
6 |
char *InlineString(char *buf, uint16 string); |
4912
d04b3f2bca70
(svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents:
4416
diff
changeset
|
7 |
char *GetString(char *buffr, uint16 string, const char* last); |
2063
95259a31ceb5
(svn r2572) - Codechange: [string] Changed string system so it's not as dependent on decode_parameters
ludde
parents:
2056
diff
changeset
|
8 |
|
2202 | 9 |
extern char _userstring[128]; |
10 |
||
1309
dab90d4cbf2d
(svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents:
diff
changeset
|
11 |
void InjectDParam(int amount); |
6298
c30fe89622df
(svn r9119) [cpp_gui] -Sync with trunk (r9003:9100)
bjarni
parents:
5726
diff
changeset
|
12 |
int32 GetParamInt32(); |
1309
dab90d4cbf2d
(svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents:
diff
changeset
|
13 |
|
6303 | 14 |
bool ReadLanguagePack(int index); |
15 |
void InitializeLanguagePacks(); |
|
16 |
||
2436
177cb6a8339f
(svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents:
2291
diff
changeset
|
17 |
#endif /* STRINGS_H */ |