| 155 | } |
| 156 | |
| 157 | void UpdateWindowSize(size_t width, size_t height) |
| 158 | { |
| 159 | runtime->Dispatch([width, height](Napi::Env env) { |
| 160 | Babylon::Plugins::NativeWindow::UpdateSize(env, width, height); |
| 161 | }); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | int APIENTRY wWinMain(_In_ HINSTANCE hInstance, |
no test coverage detected