12 lines
203 B
C++
12 lines
203 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace file {
|
|
void init();
|
|
|
|
void const * open(char const * filename, uint32_t * out_size);
|
|
|
|
void * openRelative(char const * filename, uint32_t * out_size);
|
|
}
|