]> Dogcows Code - chaz/openbox/commitdiff
make enum values match numbers in the spec, and make the .desktop file reader functio...
authorDana Jansens <danakj@orodu.net>
Wed, 24 Mar 2010 02:15:12 +0000 (22:15 -0400)
committerDana Jansens <danakj@orodu.net>
Thu, 25 Mar 2010 22:11:13 +0000 (18:11 -0400)
obt/ddfile.h

index 2fc2f100eb2ae8f7f9cd0942106d2d6d40becc8f..5d5cf8db73713153d87f2220f633bdd94cd6a906 100644 (file)
@@ -24,9 +24,9 @@
 G_BEGIN_DECLS
 
 typedef enum {
-       OBT_DDFILE_TYPE_APPLICATION = 0,
-       OBT_DDFILE_TYPE_LINK        = 1,
-       OBT_DDFILE_TYPE_DIRECTORY   = 2
+       OBT_DDFILE_TYPE_APPLICATION = 1,
+       OBT_DDFILE_TYPE_LINK        = 2,
+       OBT_DDFILE_TYPE_DIRECTORY   = 3
 } ObtDDFileType;
 
 typedef enum {
@@ -48,7 +48,7 @@ typedef enum {
 
 typedef struct _ObtDDFile     ObtDDFile;
 
-ObtDDFile* obt_ddfile_new_from_file(const gchar *name);
+ObtDDFile* obt_ddfile_new_from_file(const gchar *name, GSList *paths);
 
 void obt_ddfile_ref(ObtDDFile *e);
 void obt_ddfile_unref(ObtDDFile *e);
This page took 0.020584 seconds and 4 git commands to generate.