https://github.com/Microsoft/CNTK
Raw File
Tip revision: dbc5783f34630f2b9e8aba1935a358d3684da0f1 authored by Alexey Kamenev on 10 May 2016, 17:58:13 UTC
Updated testcase.
Tip revision: dbc5783
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