26 #ifndef IMPORT_PENDING_MATCHES_H 27 #define IMPORT_PENDING_MATCHES_H 32 typedef GHashTable GNCImportPendingMatches;
34 typedef enum _import_match_type {
35 GNCImportPending_NONE,
36 GNCImportPending_AUTO,
37 GNCImportPending_MANUAL
38 } GNCImportPendingMatchType;
40 GNCImportPendingMatches * gnc_import_PendingMatches_new(
void);
42 void gnc_import_PendingMatches_delete(GNCImportPendingMatches *map);
45 gnc_import_PendingMatches_add_match(GNCImportPendingMatches *map,
47 gboolean selected_manually);
50 gnc_import_PendingMatches_remove_match(GNCImportPendingMatches *map,
52 gboolean selected_manually);
54 GNCImportPendingMatchType
55 gnc_import_PendingMatches_get_match_type(GNCImportPendingMatches *map,
59 gnc_import_PendingMatches_get_type_str(GNCImportPendingMatchType type);
Generic importer backend interface.