Function to set test root path for stub platform
| 12 | |
| 13 | // Function to set test root path for stub platform |
| 14 | void setTestFileSystemRoot(const char* root_path) FL_NOEXCEPT { |
| 15 | if (root_path) { |
| 16 | g_stub_fs_root_path = root_path; |
| 17 | } else { |
| 18 | g_stub_fs_root_path.clear(); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | // Getter for test root path for stub platform |
| 23 | const char* getTestFileSystemRoot() FL_NOEXCEPT { |