https://github.com/Microsoft/CNTK
Raw File
Tip revision: e47fe134fce1727b41eb76a78a673941da43da16 authored by Clemens Marschner on 08 July 2016, 08:14:25 UTC
Correct AllocateAllMatrices
Tip revision: e47fe13
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