mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-03-11 18:51:04 +00:00
16 lines
315 B
C++
16 lines
315 B
C++
|
///////////////////////////////////////
|
||
|
// main.cpp
|
||
|
|
||
|
// Add the Win32++\include directory to project's additional include directories
|
||
|
#include "ScribbleApp.h"
|
||
|
|
||
|
|
||
|
int APIENTRY WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
||
|
{
|
||
|
// Start Win32++
|
||
|
CScribbleApp MyApp;
|
||
|
|
||
|
// Run the application
|
||
|
return MyApp.Run();
|
||
|
}
|