#include #include #include "window.hpp" PKEWindowProperties windowProps{}; int main() { printf("PKE ENTERING\n"); try { CreateWindow(&windowProps); } catch (const std::exception &exc) { printf("EXCEPTION: %s\n", exc.what()); } catch (...) { printf("UNHANDLED EXCEPTION\n"); } DestroyWindow(); printf("PKE EXITING\n"); return 0; }