about summary refs log tree commit diff
path: root/src/base/system.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-10-07 23:51:07 +0200
committeroy <Tom_Adams@web.de>2010-10-07 23:51:07 +0200
commit6a26cd6621b5f0b70177b0d17ed433b5669f1314 (patch)
treea0964f5ed7797058b0718492142126ed55f790cc /src/base/system.h
parent3a98f7a048c044ce0d870320fc0b1def0db4f7fb (diff)
downloadzcatch-6a26cd6621b5f0b70177b0d17ed433b5669f1314.tar.gz
zcatch-6a26cd6621b5f0b70177b0d17ed433b5669f1314.zip
fixed various problems with the file dialog in the editor
Diffstat (limited to 'src/base/system.h')
-rw-r--r--src/base/system.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/base/system.h b/src/base/system.h
index 62fe02e9..3d0d5cc7 100644
--- a/src/base/system.h
+++ b/src/base/system.h
@@ -970,10 +970,13 @@ int fs_chdir(const char *path);
 	Parameters:
 		path - The directory string
 
+	Returns:
+		Returns 0 on success, 1 on failure.
+
 	Remarks:
 		- The string is treated as zero-termineted string.
 */
-void fs_parent_dir(char *path);
+int fs_parent_dir(char *path);
 
 /*
 	Group: Undocumented