aboutsummaryrefslogtreecommitdiff
path: root/client/src
diff options
context:
space:
mode:
authorauth12 <[email protected]>2020-07-19 11:45:43 -0700
committerauth12 <[email protected]>2020-07-19 11:45:43 -0700
commit4e6a09d486ed462ee4cf38c3735a12d530dc09d4 (patch)
treea67ccac41fef7a412b4357fbe54582cc4b692863 /client/src
parentDeleted asmjit submodule (diff)
downloadloader-4e6a09d486ed462ee4cf38c3735a12d530dc09d4.tar.xz
loader-4e6a09d486ed462ee4cf38c3735a12d530dc09d4.zip
Added asmjit.
Fixed solution file.
Diffstat (limited to 'client/src')
-rw-r--r--client/src/client/client.h3
-rw-r--r--client/src/include.h9
-rw-r--r--client/src/shellcode/shellcode.h2
-rw-r--r--client/src/util/io.h4
4 files changed, 9 insertions, 9 deletions
diff --git a/client/src/client/client.h b/client/src/client/client.h
index 40b8e53..f4769d4 100644
--- a/client/src/client/client.h
+++ b/client/src/client/client.h
@@ -1,4 +1,7 @@
#pragma once
+
+#include <wolfssl/ssl.h>
+
#include "../util/io.h"
#include "../util/events.h"
#include "packet.h"
diff --git a/client/src/include.h b/client/src/include.h
index 562b52f..a810eed 100644
--- a/client/src/include.h
+++ b/client/src/include.h
@@ -32,11 +32,4 @@
#include <future>
#include <any>
-#include <spdlog/fmt/fmt.h>
-#include <spdlog/spdlog.h>
-#include <spdlog/sinks/basic_file_sink.h>
-#include <spdlog/sinks/stdout_color_sinks.h>
-
-#include <wolfssl/ssl.h>
-
-#include <asmjit/src/asmjit/asmjit.h> \ No newline at end of file
+#include <spdlog/fmt/fmt.h> \ No newline at end of file
diff --git a/client/src/shellcode/shellcode.h b/client/src/shellcode/shellcode.h
index 5f0e135..4a87dca 100644
--- a/client/src/shellcode/shellcode.h
+++ b/client/src/shellcode/shellcode.h
@@ -1,6 +1,6 @@
#pragma once
-#include <asmjit/src/asmjit/asmjit.h>
+#include <asmjit/asmjit.h>
using namespace asmjit;
diff --git a/client/src/util/io.h b/client/src/util/io.h
index 8eae321..b1a09f9 100644
--- a/client/src/util/io.h
+++ b/client/src/util/io.h
@@ -1,5 +1,9 @@
#pragma once
+#include <spdlog/spdlog.h>
+#include <spdlog/sinks/basic_file_sink.h>
+#include <spdlog/sinks/stdout_color_sinks.h>
+
namespace io {
extern std::shared_ptr<spdlog::logger> logger;