https://github.com/Microsoft/CNTK
Raw File
Tip revision: b2dee0ae0813694cdadee89d2fab5d4ccc6b5c2b authored by Guoli Ye on 04 October 2018, 03:05:09 UTC
fix memory issue
Tip revision: b2dee0a
dllmain.cpp
// dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.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;
}
back to top