summaryrefslogtreecommitdiff
path: root/src/shared/inject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/inject.h')
-rw-r--r--src/shared/inject.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/shared/inject.h b/src/shared/inject.h
index 69c56cc6..d5030363 100644
--- a/src/shared/inject.h
+++ b/src/shared/inject.h
@@ -17,11 +17,15 @@ You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
-#pragma once
-
-#define WIN32_LEAN_AND_MEAN
-#include <windows.h>
-
-#include <string>
-
-void injectDLL(HANDLE processHandle, HANDLE threadHandle, const std::string &dllname, const std::wstring &profileName, int logLevel);
+#pragma once
+
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+
+#include <string>
+
+namespace MOShared {
+
+void injectDLL(HANDLE processHandle, HANDLE threadHandle, const std::string &dllname, const std::wstring &profileName, int logLevel);
+
+}