https://github.com/Microsoft/CNTK
Raw File
Tip revision: 6351dde5b89268d91106c8671a531a5d925ba1ff authored by Cheng Tang on 20 July 2017, 04:20:12 UTC
Merge branch 'chenta/reverse' into chenta/reverse_support
Tip revision: 6351dde
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