Update dll.c

This commit is contained in:
blueloveTH 2024-11-07 20:43:18 +08:00
parent 362283627e
commit 5dd564aa53

View File

@ -3,8 +3,12 @@
#if PK_IS_DESKTOP_PLATFORM && PK_ENABLE_OS
#ifdef _WIN32
#ifndef _WINDOWS_
void* LoadLibraryA(const char*);
void* GetProcAddress(void*, const char*);
#endif
#else
#include <dlfcn.h>
#endif