diff options
author | IronClawTrem <louie.nutman@gmail.com> | 2020-02-16 03:40:06 +0000 |
---|---|---|
committer | IronClawTrem <louie.nutman@gmail.com> | 2020-02-16 03:40:06 +0000 |
commit | 425decdf7e9284d15aa726e3ae96b9942fb0e3ea (patch) | |
tree | 6c0dd7edfefff1be7b9e75fe0b3a0a85fe1595f3 /src/script/rapidjson/file.hpp | |
parent | ccb0b2e4d6674a7a00c9bf491f08fc73b6898c54 (diff) |
create tremded branch
Diffstat (limited to 'src/script/rapidjson/file.hpp')
-rw-r--r-- | src/script/rapidjson/file.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/script/rapidjson/file.hpp b/src/script/rapidjson/file.hpp new file mode 100644 index 0000000..5e098d4 --- /dev/null +++ b/src/script/rapidjson/file.hpp @@ -0,0 +1,21 @@ +#ifndef __LUA_RAPIDJSION_FILE_HPP__ +#define __LUA_RAPIDJSION_FILE_HPP__ + +#include <cstdio> + +namespace file +{ + inline FILE* open(const char* filename, const char* mode) + { +#if WIN32 + FILE* fp = nullptr; + fopen_s(&fp, filename, mode); + return fp; +#else + return fopen(filename, mode); +#endif + } +} + +#endif + |