adding symbols to dll on windows

This commit is contained in:
Kbz-8
2023-12-08 19:13:25 +01:00
parent 19ce912afe
commit 5dcc2045d6
34 changed files with 108 additions and 75 deletions

View File

@@ -6,7 +6,7 @@
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/06 16:24:11 by maldavid #+# #+# */
/* Updated: 2023/11/24 19:08:04 by maldavid ### ########.fr */
/* Updated: 2023/12/08 19:12:40 by kbz_8 ### ########.fr */
/* */
/* ************************************************************************** */
@@ -20,10 +20,11 @@
#include <cstdint>
#include <unordered_set>
#include <renderer/text_library.h>
#include <core/profile.h>
namespace mlx
{
struct TextDrawData
struct MLX_API TextDrawData
{
TextID id;
int x;
@@ -40,7 +41,7 @@ namespace mlx
namespace std
{
template <>
struct hash<mlx::TextDrawData>
struct MLX_API hash<mlx::TextDrawData>
{
std::size_t operator()(const mlx::TextDrawData& d) const noexcept
{
@@ -51,7 +52,7 @@ namespace std
namespace mlx
{
class TextPutPipeline
class MLX_API TextPutPipeline
{
public:
TextPutPipeline() = default;