Sha256: 5422e67e05e2263552c2e8bf88e19d6e2b525289279bafe517c04ac9787627b4
Contents?: true
Size: 918 Bytes
Versions: 1
Compression:
Stored size: 918 Bytes
Contents
/* * libxlsxwriter * * Copyright 2014-2022, John McNamara, jmcnamara@cpan.org. See LICENSE.txt. * * custom - A libxlsxwriter library for creating Excel custom property files. * */ #ifndef __LXW_CUSTOM_H__ #define __LXW_CUSTOM_H__ #include <stdint.h> #include "common.h" /* * Struct to represent a custom property file object. */ typedef struct lxw_custom { FILE *file; struct lxw_custom_properties *custom_properties; uint32_t pid; } lxw_custom; /* *INDENT-OFF* */ #ifdef __cplusplus extern "C" { #endif /* *INDENT-ON* */ lxw_custom *lxw_custom_new(void); void lxw_custom_free(lxw_custom *custom); void lxw_custom_assemble_xml_file(lxw_custom *self); /* Declarations required for unit testing. */ #ifdef TESTING STATIC void _custom_xml_declaration(lxw_custom *self); #endif /* TESTING */ /* *INDENT-OFF* */ #ifdef __cplusplus } #endif /* *INDENT-ON* */ #endif /* __LXW_CUSTOM_H__ */
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fast_excel-0.5.0 | libxlsxwriter/include/xlsxwriter/custom.h |