]> Shamusworld >> Repos - thunder/blob - src/fileio.h
Added save states; updated application icon.
[thunder] / src / fileio.h
1 //
2 // fileio.cpp: File I/O functions
3 //
4 // by James Hammons
5 // (C) 2023 Underground Software
6 //
7 #ifndef __FILEIO_H__
8 #define __FILEIO_H__
9
10 #include <stdio.h>
11 #include <cstdint>
12
13 uint32_t ReadLong(FILE *);
14 void WriteLong(FILE *, uint32_t);
15
16 #endif  // __FILEIO_H__