12 lines
284 B
C++
12 lines
284 B
C++
#include "FormMain.h"
|
|
|
|
#include <Windows.h>
|
|
|
|
using namespace DroneClientCpp;
|
|
|
|
int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) {
|
|
Application::EnableVisualStyles();
|
|
Application::SetCompatibleTextRenderingDefault(false);
|
|
Application::Run(gcnew FormMain);
|
|
return 0;
|
|
} |