34 lines
723 B
C++
34 lines
723 B
C++
#ifndef GERMANAIRLINESVA_GACONNECTOR_ESP_MAIN_H
|
|
#define GERMANAIRLINESVA_GACONNECTOR_ESP_MAIN_H
|
|
|
|
#include <atomic>
|
|
#include <ctime>
|
|
#include <fstream>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <mutex>
|
|
#include <queue>
|
|
#include <string>
|
|
|
|
#include "websocket.h"
|
|
|
|
#include <shlobj.h>
|
|
#include <stdlib.h>
|
|
#include <windows.h>
|
|
|
|
#include "_simconnect.h"
|
|
#include "config/config.hpp"
|
|
#include "constants.h"
|
|
#include "logbook/logbook.hpp"
|
|
#include "recording/recording.hpp"
|
|
#include "simdata/simDatabase.hpp"
|
|
|
|
WINBOOL addNotifyIcon(HWND hWnd);
|
|
WINBOOL removeNotifyIcon(HWND hWnd);
|
|
WINBOOL createMenu(HWND hWnd);
|
|
void end(HWND hwnd);
|
|
void serverWorker();
|
|
void recordingWorker();
|
|
void toLog(const std::string &message);
|
|
|
|
#endif |