Made common a project

This commit is contained in:
Pasha Bibko
2025-05-05 16:45:34 +01:00
parent 616ed1ca21
commit c64a2c692c
27 changed files with 337 additions and 146 deletions

17
Common/src/dllmain.cpp Normal file
View File

@@ -0,0 +1,17 @@
// dllmain.cpp : Defines the entry point for the DLL application.
#include <LX-Common.h>
BOOL __stdcall DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return true;
}

2
Common/src/pch.cpp Normal file
View File

@@ -0,0 +1,2 @@
// Wow, such an intresting file. Don't put anything else in here //
#include <LX-Common.h>