dosgame1/util/Files.h

10 lines
218 B
C++

#ifndef GAME_FILES_H
#define GAME_FILES_H
#include <stddef.h>
namespace Files {
size_t allocateBufferAndLoadFromFile(const char *path, void **bufferPointer);
void deleteBuffer(void *);
}
#endif //GAME_FILES_H