Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / mock_engine / dllmain.cpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 // dllmain.cpp : Defines the entry point for the DLL application.
5 #ifdef _WIN32
6 #define _WINSOCKAPI_
7 #include <windows.h>
8
9 BOOL APIENTRY DllMain( HMODULE hModule,
10                        DWORD  ul_reason_for_call,
11                        LPVOID lpReserved
12                                          )
13 {
14         switch (ul_reason_for_call)
15         {
16         case DLL_PROCESS_ATTACH:
17         case DLL_THREAD_ATTACH:
18         case DLL_THREAD_DETACH:
19         case DLL_PROCESS_DETACH:
20                 break;
21         }
22         return TRUE;
23 }
24
25 #endif