diff options
author | Ted Gould <ted@gould.cx> | 2010-01-19 17:01:57 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-19 17:01:57 -0600 |
commit | 2f82ed57b751145449506164888281b57819abcc (patch) | |
tree | 7d7e6a53800f4533e9174a754dd85daaf7c3d319 /src/application-service-lru-file.h | |
parent | 8b32f5eaf299af29aae5b773921067c783ec8f01 (diff) | |
download | libayatana-appindicator-2f82ed57b751145449506164888281b57819abcc.tar.gz libayatana-appindicator-2f82ed57b751145449506164888281b57819abcc.tar.bz2 libayatana-appindicator-2f82ed57b751145449506164888281b57819abcc.zip |
Adding some API to our LRU file
Diffstat (limited to 'src/application-service-lru-file.h')
-rw-r--r-- | src/application-service-lru-file.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/application-service-lru-file.h b/src/application-service-lru-file.h index 6577278..45d3082 100644 --- a/src/application-service-lru-file.h +++ b/src/application-service-lru-file.h @@ -28,6 +28,10 @@ struct _AppLruFile { GType app_lru_file_get_type (void); +AppLruFile * app_lru_file_new (void); +void app_lru_file_touch (AppLruFile * lrufile, const gchar * id, const gchar * category); +gint app_lru_file_sort (AppLruFile * lrufile, const gchar * id_a, const gchar * id_b); + G_END_DECLS #endif |