(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)

This commit is contained in:
tron
2005-02-06 08:18:00 +00:00
parent 0b8876e946
commit 0381073e56
25 changed files with 41 additions and 18 deletions

15
strings.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef STRINGS_H
#define STRINGS_H
byte *GetString(byte *buffr, uint16 string);
void InjectDParam(int amount);
int32 GetParamInt32(void);
int GetParamInt16(void);
int GetParamInt8(void);
int GetParamUint16(void);
uint GetCurrentCurrencyRate(void);
#endif