https://github.com/Microsoft/CNTK
Raw File
Tip revision: fb495e3ba11a2666cd80b9bbcfaaf19ba3e7aa3c authored by Mark Hillebrand on 23 March 2016, 15:38:26 UTC
Tests/EndToEndTests/TestDriver.py: print sku for each test
Tip revision: fb495e3
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