https://github.com/Microsoft/CNTK
Raw File
Tip revision: c840289523b21af531dd7ffacbd2ce18fe39866b authored by Lewei Lu on 14 November 2017, 09:48:35 UTC
update facereader
Tip revision: c840289
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