mirror of
https://github.com/azure-rtos/guix.git
synced 2025-01-28 07:03:11 +08:00
15 lines
304 B
C++
15 lines
304 B
C++
|
|
/* Logic to run the application in a standalone window */
|
|
|
|
|
|
class app_runner
|
|
{
|
|
public:
|
|
app_runner();
|
|
~app_runner();
|
|
void RunApplication(int display_index, CWnd *parent = NULL);
|
|
|
|
private:
|
|
BOOL HaveStartupScreens(const CArray<widget_info *> *screen_list) const;
|
|
};
|