mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-29 15:11:48 +00:00
d16da069e9
This is a thin wrapper around the Win32 API used in the Win32 Updater Dialog implementation.
16 lines
398 B
C++
16 lines
398 B
C++
///////////////////////////////////////
|
|
// main.cpp
|
|
|
|
// Add the Win32++\include directory to project's additional include directories
|
|
// Add the Win32++\include directory to project's additional resource directories
|
|
#include "ScribbleApp.h"
|
|
|
|
|
|
int APIENTRY WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
|
|
{
|
|
// Start Win32++
|
|
CScribbleApp MyApp;
|
|
|
|
// Run the application
|
|
return MyApp.Run();
|
|
}
|