mirror of
https://github.com/DosX-dev/obfus.h
synced 2026-06-06 15:34:32 +00:00
1d8fa72ee2
Add comments
17 lines
410 B
C
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);
|
|
}
|