Код: Выделить всё
typedef struct lxw_chart_line {
    lxw_color_t color;
    uint8_t none;
    float width;
    uint8_t dash_type;
    uint8_t transparency;
} lxw_chart_line; 
Код: Выделить всё
chart_line GROUP,TYPE
color       LONG
none        BYTE
indent      STRING(3)
width       SREAL
dash_type   BYTE
transparency BYTE
 END
Код: Выделить всё
typedef struct lxw_chart_font {
    char *name;
    double size;
    uint8_t bold;
    uint8_t italic;
    uint8_t underline;
    int32_t rotation;
    lxw_color_t color;
} lxw_chart_font; Код: Выделить всё
chart_font    GROUP,TYPE
name           LONG
indent1        LONG
size           REAL
bold           BYTE
italic         BYTE
underline      BYTE
indent2        BYTE
rotation       LONG
color          LONG
 END