aboutsummaryrefslogtreecommitdiffhomepage
path: root/path.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-09 18:43:36 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-09 18:43:36 -0800
commite5ff5f7484c0e751172a2cab65d6d88a68ef281d (patch)
treeab384fbf6216fa62a602fab569a6ffc47d629fa6 /path.h
parent646240fc54617d39e0768d256a15eda94ee52812 (diff)
Some hopefully good changes to get IOs off of halloc
Diffstat (limited to 'path.h')
-rw-r--r--path.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/path.h b/path.h
index 39918382..b46eff43 100644
--- a/path.h
+++ b/path.h
@@ -18,10 +18,9 @@
Returns the user configuration directory for fish. If the directory
or one of it's parents doesn't exist, they are first created.
- \param context the halloc context to use for memory allocations
- \return 0 if the no configuration directory can be located or created, the directory path otherwise.
+ \param path The directory as an out param
+ \return whether the directory was returned successfully
*/
-wchar_t *path_get_config( void *context);
bool path_get_config(wcstring &path);
/**