mirror of
https://github.com/ElliotKillick/windows-vs-linux-loader-architecture
synced 2026-06-08 10:57:32 +00:00
12 lines
220 B
C
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;
|
|
}
|