aboutsummaryrefslogtreecommitdiff
path: root/APEX_1.4/shared/general/RenderDebug/src/RenderDebugDLLMain.cpp
blob: ea60c43c8fea21267f7d16d7d54a3bc323fdf639 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "RenderDebug.h"


extern "C" 
#if PX_WINDOWS_FAMILY != 0
__declspec(dllexport)
#endif
RENDER_DEBUG::RenderDebug* createRenderDebugExport(RENDER_DEBUG::RenderDebug::Desc &desc)
{
	return createRenderDebug(desc);
}

#if PX_WIN32 || PX_WIN64

#include "windows/PsWindowsInclude.h"
#pragma warning(disable:4100 4127)


BOOL APIENTRY DllMain( HANDLE ,
					  DWORD ul_reason_for_call,
					  LPVOID )
{
	switch (ul_reason_for_call)
	{
	case DLL_PROCESS_ATTACH:
		break;
	case DLL_THREAD_ATTACH:
		break;
	case DLL_THREAD_DETACH:
		break;
	case DLL_PROCESS_DETACH:
		break;
	}
	return TRUE;
}
#endif