aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Embroidery/libembroidery/emb-layer.h
blob: fdeaf36ce7eaf064258ccb28fa3168681dd16135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*! @file emb-layer.h */
#ifndef EMB_LAYER_H
#define EMB_LAYER_H

#include "emb-color.h"

#include "api-start.h"
#ifdef __cplusplus
extern "C" {
#endif

typedef struct EmbLayer_
{
    EmbColor color;
    const char* name;
} EmbLayer;

#ifdef __cplusplus
}
#endif /* __cplusplus */
#include "api-stop.h"

#endif /* EMB_LAYER_H */

/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */