Sha256: 5e444f30ee3c10db3346c4e1c980528bd4e857b0d3c3aefd62af3acf6110e843

Contents?: true

Size: 434 Bytes

Versions: 1

Compression:

Stored size: 434 Bytes

Contents

#include <ruby.h>

#ifndef __WORKBOOK__
#define __WORKBOOK__

struct workbook {
  char *path;
  lxw_workbook *workbook;
  lxw_doc_properties *properties;
  st_table *formats;
};

lxw_format *workbook_get_format(VALUE self, VALUE key);
lxw_datetime value_to_lxw_datetime(VALUE val);

void init_xlsxwriter_workbook();

extern VALUE mXlsxWriter;
extern VALUE cWorkbook;
extern const rb_data_type_t workbook_type;

#endif // __WORKBOOK__

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xlsxwriter-0.2.3.pre.1 ext/xlsxwriter/workbook.h