7 lines
198 B
C++
7 lines
198 B
C++
#include "MyApplication.h"
|
|
|
|
int WINAPI WinMain(HINSTANCE h_instance, HINSTANCE h_prev_instance, LPSTR cmd_line, int n_cmd_show)
|
|
{
|
|
MyApplication my_app("my_app", h_instance);
|
|
return my_app.run();
|
|
} |