functions.h
changeset 1328 e069d2db0e4c
parent 1317 f382f1b439c7
child 1329 a8a0d60b0a8e
--- a/functions.h	Sun Feb 06 20:29:32 2005 +0000
+++ b/functions.h	Sun Feb 06 20:53:31 2005 +0000
@@ -159,13 +159,13 @@
 
 /* misc.c */
 void DeleteName(StringID id);
-byte *GetName(int id, byte *buff);
+char *GetName(int id, char *buff);
 
 // AllocateNameUnique also tests if the name used is not used anywere else
 //  and if it is used, it returns an error.
 #define AllocateNameUnique(name, skip) RealAllocateName(name, skip, true)
 #define AllocateName(name, skip) RealAllocateName(name, skip, false)
-StringID RealAllocateName(const byte *name, byte skip, bool check_double);
+StringID RealAllocateName(const char *name, byte skip, bool check_double);
 void ConvertDayToYMD(YearMonthDay *ymd, uint16 date);
 uint ConvertYMDToDay(uint year, uint month, uint day);
 uint ConvertIntDate(uint date);