Home | History | Annotate | Download | only in hpcboot

Lines Matching defs:app

59 	HpcBootApp *app = 0;		// Application body.
64 app = new HpcBootApp(instance);
65 app->_cons = Console::Instance();
66 app->_root = new RootWindow(*app);
68 if (!app->registerClass(reinterpret_cast <WNDPROC>(Window::_wnd_proc)))
71 if (!app->_root->create(0))
76 ret = app->run(); // Main loop.
82 if (app->_root)
83 delete app->_root;
84 delete app;