summaryrefslogtreecommitdiff
path: root/src/strife/m_saves.h
diff options
context:
space:
mode:
authorJames Haley2011-02-10 20:45:00 +0000
committerJames Haley2011-02-10 20:45:00 +0000
commit0e7e7ba3b64e6bccfcca85d4120f2f60f1fe05c3 (patch)
treed8d4d753dbd3c0568652b5c87d4ce6f6251c2d8c /src/strife/m_saves.h
parent808f6fd842f581f31aa0d91617a759af46fdc732 (diff)
downloadchocolate-doom-0e7e7ba3b64e6bccfcca85d4120f2f60f1fe05c3.tar.gz
chocolate-doom-0e7e7ba3b64e6bccfcca85d4120f2f60f1fe05c3.tar.bz2
chocolate-doom-0e7e7ba3b64e6bccfcca85d4120f2f60f1fe05c3.zip
Restarted work on hub save code. Brought in multiple filepath handling
routines from Eternity. Subversion-branch: /branches/strife-branch Subversion-revision: 2252
Diffstat (limited to 'src/strife/m_saves.h')
-rw-r--r--src/strife/m_saves.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/strife/m_saves.h b/src/strife/m_saves.h
index 9b587c81..b55ffa12 100644
--- a/src/strife/m_saves.h
+++ b/src/strife/m_saves.h
@@ -31,8 +31,16 @@
#ifndef M_SAVES_H__
#define M_SAVES_H__
+// Strife Savegame Functions
boolean M_SaveMisObj(const char *path);
+// Custom Utilities for Filepath Handling
+void *M_Calloc(size_t n1, size_t n2);
+void M_NormalizeSlashes(char *str);
+int M_StringAlloc(char **str, int numstrs, size_t extra, const char *str1, ...);
+char *M_SafeFilePath(const char *basepath, const char *newcomponent);
+char M_GetFilePath(const char *fn, char *dest, size_t len);
+
#endif
// EOF