mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
13 lines
150 B
C
13 lines
150 B
C
|
|
#ifndef BC_OS_FILE_H
|
||
|
|
#define BC_OS_FILE_H
|
||
|
|
|
||
|
|
DECLARE_STRUCT(HOSFILE__);
|
||
|
|
|
||
|
|
struct HOSFILE__ {
|
||
|
|
int32_t unused__;
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef HOSFILE__* HOSFILE;
|
||
|
|
|
||
|
|
#endif
|