summaryrefslogtreecommitdiff
path: root/source3/include/includes.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1999-12-22 01:29:22 +0000
committerJeremy Allison <jra@samba.org>1999-12-22 01:29:22 +0000
commite7851ce52e408db4d78a45066ed042708203e7a1 (patch)
treecf196fcbf7eb4d307c410506a9ea97fd52ef345b /source3/include/includes.h
parent30cecd8d2ca41ee34d11fe1b016a5d920ec7f10c (diff)
downloadsamba-e7851ce52e408db4d78a45066ed042708203e7a1.tar.gz
samba-e7851ce52e408db4d78a45066ed042708203e7a1.tar.bz2
samba-e7851ce52e408db4d78a45066ed042708203e7a1.zip
First cut at unicode sys_xx functions. Now to start moving upwards.....
Jeremy. (This used to be commit b5eb009cc3cfd1adc044e91911d59acdb54c30cb)
Diffstat (limited to 'source3/include/includes.h')
-rw-r--r--source3/include/includes.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index e8eb8e28ea..b42f5e0115 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -649,6 +649,31 @@ extern int errno;
#define MAXCODEPAGELINES 256
#endif
+/*
+ * Type for wide character dirent structure.
+ */
+
+typedef struct smb_wdirent {
+ SMB_INO_T d_ino;
+ SMB_OFF_T d_off;
+ unsigned short d_reclen;
+ wpstring d_name;
+} SMB_STRUCT_WDIRENT;
+
+/*
+ * Type for wide character passwd structure.
+ */
+
+typedef struct smb_wpasswd {
+ wfstring pw_name;
+ char *pw_passwd;
+ uid_t pw_uid;
+ gid_t pw_gid;
+ wpstring pw_gecos;
+ wpstring pw_dir;
+ wpstring pw_shell;
+} SMB_STRUCT_WPASSWD;
+
/***** automatically generated prototypes *****/
#include "proto.h"