22 lines
505 B
C++
22 lines
505 B
C++
// Watchful Eye main file
|
|
#include "pch.h"
|
|
|
|
#include "version.h"
|
|
#include "Application.h"
|
|
|
|
// Enable visual styles
|
|
#pragma comment(linker, "\"/manifestdependency:type='win32' \
|
|
name='Microsoft.Windows.Common-Controls' version='6.0.0.0' \
|
|
processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
|
|
|
|
#define APPNAME "Watchful Eye"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
{
|
|
watchfuleye::Application app(APPNAME, APPVERSION, 15);
|
|
app.run();
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|