spidey-decomp/dcfileio.h

16 lines
298 B
C
Raw Normal View History

2024-05-23 17:19:28 +00:00
#pragma once
#ifndef DCFILEIO_H
#define DCFILEIO_H
2024-05-24 15:42:19 +00:00
#include "export.h"
EXPORT void FileIO_Sync(void);
2024-08-04 15:52:13 +00:00
EXPORT void DebugPrintfX(char *,...);
EXPORT void FileIO_FileExists(char const *);
EXPORT void FileIO_Init(void);
EXPORT void FileIO_Load(void *);
2024-08-19 10:37:19 +00:00
EXPORT i32 FileIO_Open(const char *);
2024-05-24 15:42:19 +00:00
#endif