aboutsummaryrefslogtreecommitdiffhomepage
path: root/wutil.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-06-17 23:07:08 +1000
committerGravatar axel <axel@liljencrantz.se>2006-06-17 23:07:08 +1000
commit07ff8a6c03e9c232a285e8b4ebc22f11ae5963d7 (patch)
treedee6963874a0c36ec40401211b6ea67784be2c7d /wutil.h
parent9f10dd377ee08f9142fb52db1506392610606250 (diff)
Documentation updates. Fixes a few formating bugs, adds various minor missing api documentation, fixes a few typos. Also fixes a few tiny code issues, mostly missing consts, etc
darcs-hash:20060617130708-ac50b-cc2ec5aa3e4bfb8e28d7b86441bfb4661f1dd7e7.gz
Diffstat (limited to 'wutil.h')
-rw-r--r--wutil.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/wutil.h b/wutil.h
index 31651f33..666ae67c 100644
--- a/wutil.h
+++ b/wutil.h
@@ -15,8 +15,14 @@
#include <sys/types.h>
#include <stdarg.h>
+/**
+ Wide version of the dirent data structure
+*/
struct wdirent
{
+ /**
+ The name of the current directory
+ */
wchar_t *d_name;
}
;
@@ -97,6 +103,9 @@ int wchdir( const wchar_t * dir );
*/
wchar_t *wrealpath(const wchar_t *pathname, wchar_t *resolved_path);
+/**
+ Wide character version of readdir()
+*/
struct wdirent *wreaddir(DIR *dir );
/**