/usr/include/gnucash/gnc-import-format-cb.h is in gnucash-common 1:2.4.10-6.
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 36 37 38 39 40 41 42 43 44 | #ifndef GNC_IMPORT_FORMAT_CB_H
#define GNC_IMPORT_FORMAT_CB_H
#ifdef __cplusplus
//extern "C" {
#endif
#include <glib.h>
#include <glib-object.h>
#define G_TYPE_GNC_IMPORT_FORMAT_CB gnc_import_format_cb_get_type()
#define GNC_IMPORT_FORMAT_CB(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_GNC_IMPORT_FORMAT_CB, GNCImportFormatCB)
#define GNC_IMPORT_FORMAT_CB_CLASS(klass) G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_GNC_IMPORT_FORMAT_CB, GNCImportFormatCBClass)
#define IS_GNC_IMPORT_FORMAT_CB(obj) G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_GNC_IMPORT_FORMAT_CB)
#define IS_GNC_IMPORT_FORMAT_CB_CLASS(klass) G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_GNC_IMPORT_FORMAT_CB)
typedef struct _GNCImportFormatCB GNCImportFormatCB;
typedef struct _GNCImportFormatCBClass GNCImportFormatCBClass;
#include "gnc-druid-cb.h"
#include "import-parse.h"
struct _GNCImportFormatCB
{
GNCDruidCB parent;
GncImportFormat format;
};
struct _GNCImportFormatCBClass
{
GNCDruidCBClass parent_class;
};
GType gnc_import_format_cb_get_type(void);
GNCImportFormatCB* gnc_import_format_cb_new(void);
/* methods */
#ifdef __cplusplus
//}
#endif
#endif /* GNC_IMPORT_FORMAT_CB_H */
|