https://github.com/Microsoft/CNTK
Raw File
Tip revision: 04305f4d6d2b0c4fb841402e83255de3dcfefdb7 authored by Leonardo Nunes on 29 May 2018, 23:40:38 UTC
Removing GPU NMS binary.
Tip revision: 04305f4
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