-
Notifications
You must be signed in to change notification settings - Fork 0
/
dfi-builder-string-table.h
26 lines (18 loc) · 1.62 KB
/
dfi-builder-string-table.h
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
#include <glib.h>
GHashTable * desktop_file_index_string_tables_create (void);
GHashTable * desktop_file_index_string_tables_get_table (GHashTable *string_tables,
const gchar *locale);
void desktop_file_index_string_tables_add_string (GHashTable *string_tables,
const gchar *locale,
const gchar *string);
void desktop_file_index_string_table_add_string (GHashTable *string_table,
const gchar *string);
guint desktop_file_index_string_tables_get_offset (GHashTable *string_table,
const gchar *locale,
const gchar *string);
guint desktop_file_index_string_table_get_offset (GHashTable *string_table,
const gchar *string);
gboolean desktop_file_index_string_table_is_written (GHashTable *string_table);
void desktop_file_index_string_table_write (GHashTable *string_table,
GHashTable *shared_table,
GString *file);