diff options
| author | auth12 <[email protected]> | 2020-07-16 13:37:51 +0100 |
|---|---|---|
| committer | auth12 <[email protected]> | 2020-07-16 13:37:51 +0100 |
| commit | e2379c4956099294994e090b9bede94bbbbdcab1 (patch) | |
| tree | c62f61d77157e8eed8d4ad90db93fc79b587ba36 /client/src/include.h | |
| parent | Client login handling on server. (diff) | |
| download | loader-e2379c4956099294994e090b9bede94bbbbdcab1.tar.xz loader-e2379c4956099294994e090b9bede94bbbbdcab1.zip | |
Added windows support on client.
Diffstat (limited to 'client/src/include.h')
| -rw-r--r-- | client/src/include.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/client/src/include.h b/client/src/include.h index fe46e5a..562b52f 100644 --- a/client/src/include.h +++ b/client/src/include.h @@ -1,6 +1,12 @@ #pragma once + +#include <windows.h> #include <stdio.h> +#include <winsock2.h> +#include <ws2tcpip.h> +#include <iphlpapi.h> + #include <algorithm> #include <array> #include <chrono> @@ -26,16 +32,11 @@ #include <future> #include <any> -#include <arpa/inet.h> -#include <netdb.h> -#include <netinet/in.h> -#include <sys/socket.h> -#include <sys/types.h> -#include <unistd.h> - #include <spdlog/fmt/fmt.h> #include <spdlog/spdlog.h> #include <spdlog/sinks/basic_file_sink.h> #include <spdlog/sinks/stdout_color_sinks.h> -#include <openssl/ssl.h>
\ No newline at end of file +#include <wolfssl/ssl.h> + +#include <asmjit/src/asmjit/asmjit.h>
\ No newline at end of file |