https://github.com/Microsoft/CNTK
Raw File
Tip revision: 93e10096cb1c24d6d496045075d971b3525b031e authored by liqfu on 12 December 2018, 03:17:16 UTC
comment debug code
Tip revision: 93e1009
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