]> Shamusworld >> Repos - thunder/blobdiff - src/fileio.h
Added save states; updated application icon.
[thunder] / src / fileio.h
diff --git a/src/fileio.h b/src/fileio.h
new file mode 100644 (file)
index 0000000..9c4e70c
--- /dev/null
@@ -0,0 +1,16 @@
+//
+// fileio.cpp: File I/O functions
+//
+// by James Hammons
+// (C) 2023 Underground Software
+//
+#ifndef __FILEIO_H__
+#define __FILEIO_H__
+
+#include <stdio.h>
+#include <cstdint>
+
+uint32_t ReadLong(FILE *);
+void WriteLong(FILE *, uint32_t);
+
+#endif // __FILEIO_H__