https://github.com/Microsoft/CNTK
Raw File
Tip revision: e7afedfb01bfd4ba5a9a4bc396b6a5c39c03c826 authored by t-zhehch on 18 June 2017, 22:32:07 UTC
to make jenkin extremely happy
Tip revision: e7afedf
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