aboutsummaryrefslogtreecommitdiffstats
path: root/src/libdash/source/dllmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libdash/source/dllmain.cpp')
-rw-r--r--src/libdash/source/dllmain.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/libdash/source/dllmain.cpp b/src/libdash/source/dllmain.cpp
deleted file mode 100644
index b624228b..00000000
--- a/src/libdash/source/dllmain.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * dllmain.cpp
- *****************************************************************************
- * Copyright (C) 2012, bitmovin Softwareentwicklung OG, All Rights Reserved
- *
- * Email: libdash-dev@vicky.bitmovin.net
- *
- * This source code and its use and distribution, is subject to the terms
- * and conditions of the applicable license agreement.
- *****************************************************************************/
-
-#if defined _WIN32 || defined _WIN64
-
-#include "targetver.h"
-#define WIN32_LEAN_AND_MEAN
-#include <windows.h>
-
-BOOL APIENTRY 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;
-}
-
-#endif