mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-12 23:23:34 +00:00
adding symbols to dll on windows
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user