Files
Elliot Killick c319346761 Update
2025-02-25 02:24:48 -05:00

12 lines
220 B
C

#include <windows.h>
// Dynamically link to DLL
__declspec(dllimport) void DummyExport();
int main() {
// Call dummy export so our link to the DLL isn't optimized out
DummyExport();
return EXIT_SUCCESS;
}