95 lines
2.0 KiB
C
Raw Normal View History

2014-06-08 17:40:59 +01:00
/*
* libxlsxwriter
*
2015-03-07 16:42:13 +00:00
* Copyright 2014-2015, John McNamara, jmcnamara@cpan.org. See LICENSE.txt.
2014-06-08 17:40:59 +01:00
*
* common - Common functions and defines for the libxlsxwriter library.
*
*/
#ifndef __LXW_COMMON_H__
#define __LXW_COMMON_H__
#include <time.h>
#include "xlsxwriter/third_party/queue.h"
#ifndef TESTING
2014-06-09 23:51:10 +01:00
#define STATIC static
2014-06-08 17:40:59 +01:00
#else
#define STATIC
#endif
2014-06-10 01:05:25 +01:00
#define LXW_SHEETNAME_MAX 32
2014-06-08 17:40:59 +01:00
#define LXW_SHEETNAME_LEN 65
enum lxw_boolean {
LXW_FALSE,
LXW_TRUE
};
#define ERROR(message) \
fprintf(stderr, "[ERROR][%s:%d]: " message "\n", __FILE__, __LINE__)
#define MEM_ERROR() \
ERROR("Memory allocation failed.")
#define GOTO_LABEL_ON_MEM_ERROR(pointer, label) \
if (!pointer) { \
MEM_ERROR(); \
goto label; \
}
#define RETURN_ON_MEM_ERROR(pointer, error) \
if (!pointer) { \
MEM_ERROR(); \
return error; \
}
#define LXW_WARN(message) \
fprintf(stderr, "[WARN]: " message "\n")
/* Define the queue.h structs for the formats list. */
STAILQ_HEAD(lxw_formats, lxw_format);
/* Define the queue.h structs for the generic data structs. */
STAILQ_HEAD(lxw_tuples, lxw_tuple);
typedef struct lxw_tuple {
char *key;
char *value;
STAILQ_ENTRY (lxw_tuple) list_pointers;
} lxw_tuple;
typedef struct lxw_doc_properties {
char *title;
char *subject;
char *author;
char *manager;
char *company;
char *category;
char *keywords;
char *comments;
char *status;
time_t created;
} lxw_doc_properties;
/* *INDENT-OFF* */
#ifdef __cplusplus
extern "C" {
#endif
/* *INDENT-ON* */
/* Declarations required for unit testing. */
#ifdef TESTING
#endif /* TESTING */
/* *INDENT-OFF* */
#ifdef __cplusplus
}
#endif
/* *INDENT-ON* */
#endif /* __LXW_COMMON_H__ */