mkxp/src/emscripten.hpp

15 lines
172 B
C++
Raw Normal View History

#ifndef EMSCRIPTEN_HPP
#define EMSCRIPTEN_HPP
#ifdef __EMSCRIPTEN__
#include <emscripten.h>
extern "C" {
void load_file_async(const char* fullPathC);
}
#endif
#endif