https://github.com/Microsoft/CNTK
Raw File
Tip revision: 84fc55d3e4ee3647f5f93a33ce60c2d5bcab788d authored by Lewei Lu on 01 April 2017, 06:47:14 UTC
add scale ratio
Tip revision: 84fc55d
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