Working profiles & Updated HarmonyLinkLib

This commit is contained in:
Jordon Brooks 2024-05-25 00:44:14 +01:00
parent 3f435a284f
commit 15a2622991
Signed by: jordon
GPG key ID: DBD9758CD53E786A
12 changed files with 538 additions and 94 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -16,10 +16,14 @@
// Use a preprocessor definition to switch between export and import declarations
#ifdef _WIN32
#ifdef HARMONYLINKLIB_EXPORTS
#define HARMONYLINKLIB_API __declspec(dllexport)
#ifdef HARMONYLINKLIB_STATIC
#define HARMONYLINKLIB_API
#else
#define HARMONYLINKLIB_API __declspec(dllimport)
#ifdef HARMONYLINKLIB_SHARED
#define HARMONYLINKLIB_API __declspec(dllexport)
#else
#define HARMONYLINKLIB_API __declspec(dllimport)
#endif
#endif
#else
#define HARMONYLINKLIB_API

View file

@ -14,6 +14,9 @@
#pragma once
// Undefine the LINUX macro to avoid conflicts with the enum definition.
#undef LINUX
#include <cstdint>
// Enum class for representing different types of devices

BIN
Source/ThirdParty/HarmonyLinkLib/lib/Linux/libHarmonyLinkLibStatic.a (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
Source/ThirdParty/HarmonyLinkLib/lib/Win64/HarmonyLinkLibStatic.lib (Stored with Git LFS) vendored Normal file

Binary file not shown.