14 lines
215 B
C
14 lines
215 B
C
#ifdef WIN32
|
|
#define KBTS_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define KBTS_EXPORT
|
|
#endif
|
|
|
|
#define KB_TEXT_SHAPE_IMPLEMENTATION
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include "kb_text_shape.h"
|