mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
9 lines
164 B
C
9 lines
164 B
C
#ifndef JSUSTREAMENUM_H
|
|
#define JSUSTREAMENUM_H
|
|
|
|
enum JSUStreamSeekFrom { SEEK_SET = 0, SEEK_CUR = 1, SEEK_END = 2 };
|
|
|
|
enum EIoState { GOOD = 0, EOF = 1 };
|
|
|
|
#endif
|