Sha256: f0dd0e9c7d9ea18622bbc6d9d294ad73ebb7c0eeacf8582a87c8b378507ca267

Contents?: true

Size: 914 Bytes

Versions: 12

Compression:

Stored size: 914 Bytes

Contents

/*
 * libxlsxwriter
 *
 * Copyright 2014-2017, 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 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

12 entries across 12 versions & 3 rubygems

Version Path
fast_excel-0.2.3 libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.0.4 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.0.4.pre.2 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.2.2 libxlsxwriter/include/xlsxwriter/custom.h
kmadej_fast_excel_fork-0.2.2 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.2.1 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.2.0 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.1.7 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.1.6 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.1.5 libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.0.3 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.0.2 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h