https://github.com/Microsoft/CNTK
Raw File
Tip revision: e8e69302885e62a437c84c8a4c22f69a19ef4ed9 authored by Nikos Karampatziakis on 11 June 2017, 03:11:12 UTC
fix hostname
Tip revision: e8e6930
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