| 38 | } |
| 39 | |
| 40 | WindowResult WindowOpen(HWindow window, const WindowCreateParams* params) |
| 41 | { |
| 42 | if (!params) |
| 43 | { |
| 44 | return WINDOW_RESULT_WINDOW_OPEN_ERROR; |
| 45 | } |
| 46 | |
| 47 | return dmPlatform::OpenWindow(window, *params); |
| 48 | } |
| 49 | |
| 50 | void WindowShow(HWindow window) |
| 51 | { |