This repository has been archived on 2025-11-17. You can view files and clone it, but cannot push or open issues or pull requests.
bonus-yolo-sdk-sourcecode/Yolo11_ONNX/dllmain.cpp

20 lines
427 B
C++

// dllmain.cpp : 定义 DLL 应用程序的入口点。
#include "pch.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;
}