/usr/include/libspreadsheet-1.12/spreadsheet/libgnumeric.h is in gnumeric 1.12.32-1+b1.
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 32 33 34 35 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_LIBGNUMERIC_H_
# define _GNM_LIBGNUMERIC_H_
#include "gnumeric.h"
G_BEGIN_DECLS
#ifndef GNM_VAR_DECL
# ifdef WIN32
# ifdef GNUMERIC_INTERNAL
# define GNM_VAR_DECL __declspec(dllexport)
# else
# define GNM_VAR_DECL extern __declspec(dllimport)
# endif
# else
# define GNM_VAR_DECL extern
# endif
#endif /* GNM_VAR_DECL */
char const **gnm_pre_parse_init (int argc, gchar const **argv);
void gnm_pre_parse_shutdown (void);
void gnm_init (void);
void gnm_shutdown (void);
GOptionGroup *gnm_get_option_group (void);
GNM_VAR_DECL gboolean initial_workbook_open_complete;
/* Internal */
int gnm_dump_func_defs (char const* filename, int dump_type); /* changes as needed */
G_END_DECLS
#endif /* _GNM_LIBGNUMERIC_H_ */
|