SF.net SVN: geany: [2061] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Tue Nov 20 18:37:21 UTC 2007


Revision: 2061
          http://geany.svn.sourceforge.net/geany/?rev=2061&view=rev
Author:   eht16
Date:     2007-11-20 10:37:20 -0800 (Tue, 20 Nov 2007)

Log Message:
-----------
Add utils_mkdir() to the plugin API.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/plugindata.h
    trunk/src/plugins.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-11-20 18:15:46 UTC (rev 2060)
+++ trunk/ChangeLog	2007-11-20 18:37:20 UTC (rev 2061)
@@ -11,6 +11,7 @@
    Add sample configure dialog to the demo plugin.
    Fix cleanup code in filebrowser plugin to remove it completely when
    unloaded.
+ * src/plugindata.h, src/plugins.c: Add utils_mkdir() to the plugin API.
 
 
 2007-11-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/src/plugindata.h
===================================================================
--- trunk/src/plugindata.h	2007-11-20 18:15:46 UTC (rev 2060)
+++ trunk/src/plugindata.h	2007-11-20 18:37:20 UTC (rev 2061)
@@ -262,6 +262,7 @@
 	gchar*		(*get_locale_from_utf8) (const gchar *utf8_text);
 	gchar*		(*get_utf8_from_locale) (const gchar *locale_text);
 	gchar*		(*remove_ext_from_filename) (const gchar *filename);
+	gint		(*utils_mkdir) (const gchar *path, gboolean create_parent_dirs);
 }
 UtilsFuncs;
 

Modified: trunk/src/plugins.c
===================================================================
--- trunk/src/plugins.c	2007-11-20 18:15:46 UTC (rev 2060)
+++ trunk/src/plugins.c	2007-11-20 18:37:20 UTC (rev 2061)
@@ -142,7 +142,8 @@
 	&utils_write_file,
 	&utils_get_locale_from_utf8,
 	&utils_get_utf8_from_locale,
-	&utils_remove_ext_from_filename
+	&utils_remove_ext_from_filename,
+	&utils_mkdir
 };
 
 static UIUtilsFuncs uiutils_funcs = {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list