| 125 | }; |
| 126 | |
| 127 | void* watch_source() |
| 128 | { |
| 129 | std::filesystem::path watch_path = __FILE__; |
| 130 | watch_path = watch_path.parent_path(); |
| 131 | return new SourceWatcher(watch_path); |
| 132 | return nullptr; |
| 133 | } |
| 134 | |
| 135 | void unwatch_source(void* watcher) |
| 136 | { |