Sha256: d0e9059992f55f6ff414712fcf728b489e7d182653b685d0852d60d39d5602a7

Contents?: true

Size: 841 Bytes

Versions: 10

Compression:

Stored size: 841 Bytes

Contents

/*
 * libxlsxwriter
 *
 * Copyright 2014-2017, John McNamara, jmcnamara@cpan.org. See LICENSE.txt.
 *
 * core - A libxlsxwriter library for creating Excel XLSX core files.
 *
 */
#ifndef __LXW_CORE_H__
#define __LXW_CORE_H__

#include <stdint.h>

#include "workbook.h"
#include "common.h"

/*
 * Struct to represent a core.
 */
typedef struct lxw_core {

    FILE *file;
    lxw_doc_properties *properties;

} lxw_core;


/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {
#endif
/* *INDENT-ON* */

lxw_core *lxw_core_new();
void lxw_core_free(lxw_core *core);
void lxw_core_assemble_xml_file(lxw_core *self);

/* Declarations required for unit testing. */
#ifdef TESTING

STATIC void _core_xml_declaration(lxw_core *self);

#endif /* TESTING */

/* *INDENT-OFF* */
#ifdef __cplusplus
}
#endif
/* *INDENT-ON* */

#endif /* __LXW_CORE_H__ */

Version data entries

10 entries across 10 versions & 3 rubygems

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