Sha256: 3db83616b2c813d2363c282010371f08d00cc9c744cc15f8e45abfd3550ca44b

Contents?: true

Size: 918 Bytes

Versions: 11

Compression:

Stored size: 918 Bytes

Contents

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

11 entries across 11 versions & 2 rubygems

Version Path
fast_excel-0.4.1 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.4.0 libxlsxwriter/include/xlsxwriter/custom.h
fast_excel-0.3.0 libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.2.1.pre.2 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.2.1.pre ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.2.0 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.2.0.pre.2 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.2.0.pre ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.1.2.pre ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.1.1 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h
xlsxwriter-0.1.0 ext/xlsxwriter/libxlsxwriter/include/xlsxwriter/custom.h