https://github.com/Microsoft/CNTK
Raw File
Tip revision: 36f457ca562c618b1ebe0e4f1eed0f96b9c775bc authored by Mark Hillebrand on 01 February 2017, 17:11:45 UTC
Fix link
Tip revision: 36f457c
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