| 156 | } |
| 157 | |
| 158 | Window* UWPPlatform::CreateWindow(const CreateWindowSettings& settings) |
| 159 | { |
| 160 | // Settings with provided UWPWindowImpl are only valid |
| 161 | if (settings.Data == nullptr) |
| 162 | { |
| 163 | CRASH; |
| 164 | return nullptr; |
| 165 | } |
| 166 | |
| 167 | return New<UWPWindow>(settings, (UWPWindowImpl*)settings.Data); |
| 168 | } |
| 169 | |
| 170 | void* UWPPlatform::LoadLibrary(const Char* filename) |
| 171 | { |
no outgoing calls
no test coverage detected