Files
TheracUE/Plugins/hstherac25/Source/ThirdParty/hstherac25Library/ExampleLibrary.cpp
wonkyhonky2024 3b36a1f6a7 okey-dokey
2025-05-10 21:31:54 +01:00

20 lines
522 B
C++

#if defined _WIN32 || defined _WIN64
#include <Windows.h>
#define EXAMPLELIBRARY_EXPORT __declspec(dllexport)
#else
#include <stdio.h>
#endif
#ifndef EXAMPLELIBRARY_EXPORT
#define EXAMPLELIBRARY_EXPORT
#endif
EXAMPLELIBRARY_EXPORT void ExampleLibraryFunction()
{
#if defined _WIN32 || defined _WIN64
MessageBox(NULL, TEXT("Loaded ExampleLibrary.dll from Third Party Plugin sample."), TEXT("Third Party Plugin"), MB_OK);
#else
printf("Loaded ExampleLibrary from Third Party Plugin sample");
#endif
}