Sha256: 75a390c6319da1bf875cfa2172a34b77dc8851435c25667d491a9b901e07852e
Contents?: true
Size: 798 Bytes
Versions: 1
Compression:
Stored size: 798 Bytes
Contents
/* * libxlsxwriter * * Copyright 2014-2022, John McNamara, jmcnamara@cpan.org. See LICENSE.txt. * * theme - A libxlsxwriter library for creating Excel XLSX theme files. * */ #ifndef __LXW_THEME_H__ #define __LXW_THEME_H__ #include <stdint.h> #include "common.h" /* * Struct to represent a theme. */ typedef struct lxw_theme { FILE *file; } lxw_theme; /* *INDENT-OFF* */ #ifdef __cplusplus extern "C" { #endif /* *INDENT-ON* */ lxw_theme *lxw_theme_new(void); void lxw_theme_free(lxw_theme *theme); void lxw_theme_xml_declaration(lxw_theme *self); void lxw_theme_assemble_xml_file(lxw_theme *self); /* Declarations required for unit testing. */ #ifdef TESTING #endif /* TESTING */ /* *INDENT-OFF* */ #ifdef __cplusplus } #endif /* *INDENT-ON* */ #endif /* __LXW_THEME_H__ */
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fast_excel-0.5.0 | libxlsxwriter/include/xlsxwriter/theme.h |