mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-15 08:00:52 +00:00
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
15 lines
314 B
C++
15 lines
314 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();
|
|
}
|