mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 01:49:05 +00:00
Made common a project
This commit is contained in:
17
Common/src/dllmain.cpp
Normal file
17
Common/src/dllmain.cpp
Normal 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
2
Common/src/pch.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
// Wow, such an intresting file. Don't put anything else in here //
|
||||
#include <LX-Common.h>
|
||||
Reference in New Issue
Block a user