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