/usr/include/libspreadsheet-1.12/spreadsheet/xml-io-version.h is in gnumeric 1.12.28-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_XML_IO_VERSION_H_
# define _GNM_XML_IO_VERSION_H_
G_BEGIN_DECLS
typedef enum
{
GNM_XML_UNKNOWN = -1,
GNM_XML_V1,
GNM_XML_V2,
GNM_XML_V3, /* >= 0.52 */
GNM_XML_V4, /* >= 0.57 */
GNM_XML_V5, /* >= 0.58 */
GNM_XML_V6, /* >= 0.62 */
GNM_XML_V7, /* >= 0.66 */
GNM_XML_V8, /* >= 0.71 */
GNM_XML_V9, /* >= 0.73 add print scaling */
GNM_XML_V10, /* >= 1.0.3 remove useless Content node in cells */
GNM_XML_V11, /* >= 1.7.0 jump to sax exporter */
GNM_XML_V12, /* >= 1.7.3 Fix swapping of Value and ValueType in sax exporter */
GNM_XML_V13, /* >= 1.7.7 Deprecate ObjectAnchorType */
GNM_XML_V14, /* >= 1.12.21 Various */
/* NOTE : Keep this up to date (and in sync with the schema) */
GNM_XML_LATEST = GNM_XML_V14
} GnumericXMLVersion;
G_END_DECLS
#endif /* _GNM_XML_IO_VERSION_H_ */
|