summaryrefslogtreecommitdiff
path: root/replay.h
diff options
context:
space:
mode:
Diffstat (limited to 'replay.h')
-rw-r--r--replay.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/replay.h b/replay.h
index 7f1e331..983e05b 100644
--- a/replay.h
+++ b/replay.h
@@ -7,15 +7,16 @@
#include <stdlib.h>
#include <time.h>
#include <ctype.h>
+#include <limits.h>
#define MAXCHAR 1000
#define TIMELEN 11 // 32-bit unixtime is up to 10 characters (+1 for null char) // TODO - Make this Year 2038 proof
#define TIMELENF 11 // [HH:MM:SS] = 10 characters + 1 for null char
-int replaylines(int seconds);
+int replaylines(int seconds, char *basedir);
-int readreplayline(int seconds, int linenum, char *str);
+int readreplayline(int seconds, int linenum, char *str, char *basedir);
-int writereplayline(char *str);
+int writereplayline(char *str, char *basedir);
#endif