| 70 | static FileExistsFunction g_file_exists_function = FileExistsRaw; |
| 71 | |
| 72 | bool LoadFile(const char *name, bool binary, std::string *buf) { |
| 73 | FLATBUFFERS_ASSERT(g_load_file_function); |
| 74 | return g_load_file_function(name, binary, buf); |
| 75 | } |
| 76 | |
| 77 | bool FileExists(const char *name) { |
| 78 | FLATBUFFERS_ASSERT(g_file_exists_function); |
no outgoing calls