mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 01:49:05 +00:00
Made projects use PCHs
This commit is contained in:
@@ -1,6 +1,27 @@
|
||||
// dllmain.cpp : Defines the entry point for the DLL application.
|
||||
#include <LX-Common.h>
|
||||
|
||||
namespace LX
|
||||
{
|
||||
using DllFunc = bool(HMODULE);
|
||||
|
||||
static bool ProcAttach(HMODULE hModule)
|
||||
{
|
||||
}
|
||||
|
||||
static bool ProcDetach(HMODULE hModule)
|
||||
{
|
||||
}
|
||||
|
||||
static bool ThreadAttach(HMODULE hModule)
|
||||
{
|
||||
}
|
||||
|
||||
static bool ThreadDetach(HMODULE hModule)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
BOOL __stdcall DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
||||
{
|
||||
switch (ul_reason_for_call)
|
||||
|
||||
Reference in New Issue
Block a user