Update-Installer/external/win32cpp/tutorials/Tutorial6/main.cpp
Robert Knight d16da069e9 Add Win++ library to external
This is a thin wrapper around the Win32 API used in the Win32
Updater Dialog implementation.
2011-08-23 19:54:52 +01:00

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();
}