Newer
Older
PrismSoftware / ECTrainer2 / main.cpp

#include <Windows.h>
#include <tchar.h>
#include "ECTrainer.h"

#ifdef _DEBUG
#include <iostream>
#endif

#ifdef _DEBUG
int main() {
	HINSTANCE hInstance = ::GetModuleHandle(NULL);
#else
int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) {
#endif
	ECTrainer ect(hInstance);
	if (!ect.Process()) return 1;

#ifdef _DEBUG
	//std::cin.get();
#endif
	return 0;
}