Attempt fix 12

This commit is contained in:
Saood Karim
2025-04-20 22:24:06 -05:00
parent cf6cfdc290
commit 8e82ee73cb
2 changed files with 3 additions and 2 deletions

View File

@@ -15,9 +15,9 @@
#endif
#if defined(_WIN32) && !defined(__MINGW32__)
# define IQK_API __declspec(dllexport)
#define IQK_API __declspec(dllexport)
#else
# define IQK_API __attribute__ ((visibility ("default")))
#define IQK_API __attribute__ ((visibility ("default")))
#endif
#ifdef _MSC_VER

View File

@@ -7,6 +7,7 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
#include "iqk_config.h"
#ifdef __cplusplus
extern "C" {
#endif