Files
Hors 1d8fa72ee2 Update dll.c
Add comments
2025-06-04 00:51:44 +02:00

17 lines
410 B
C

//+---------------------------------------------------------------------------
//
// dll.c - Windows DLL example - dynamically linked part
//
#include <windows.h>
#include "../include/obfus.h"
// Exported data
__declspec(dllexport) const char *hello_data = "(not set)";
// Exported function
__declspec(dllexport) void hello_func(void)
{
MessageBoxA(NULL, hello_data, "From DLL", MB_ICONINFORMATION);
}