diff options
author | Jeremy Allison <jra@samba.org> | 2000-10-03 02:12:14 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-10-03 02:12:14 +0000 |
commit | 3ad2ee22bb4ecee24d069bb7efadff18c25044d1 (patch) | |
tree | 833839953637fd990b712717df13efffa5b6ae10 /source3/include/proto.h | |
parent | 2679fa315da579fbdc7dd35d3ee1cb364b85a1d9 (diff) | |
download | samba-3ad2ee22bb4ecee24d069bb7efadff18c25044d1.tar.gz samba-3ad2ee22bb4ecee24d069bb7efadff18c25044d1.tar.bz2 samba-3ad2ee22bb4ecee24d069bb7efadff18c25044d1.zip |
utf-8 and EUC3 patch from Hiroshi Miura Samba User Group Japan staff.
mkdir high bits patch from Robert Dahlem" <Robert.Dahlem@gmx.net>.
jeremy.
(This used to be commit b40191d27180ab1e59935086073c4d312552f717)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index f06a0a790f..1a54aae928 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -616,6 +616,8 @@ void all_string_sub_w(smb_ucs2_t *s,const smb_ucs2_t *pattern,const smb_ucs2_t * void split_at_last_component_w(smb_ucs2_t *path, smb_ucs2_t *front, smb_ucs2_t sep, smb_ucs2_t *back); smb_ucs2_t *octal_string_w(int i); smb_ucs2_t *string_truncate_w(smb_ucs2_t *s, size_t length); +smb_ucs2_t doscp2ucs2(int w); +int ucs2doscp(smb_ucs2_t w); /*The following definitions come from lib/wins_srv.c */ @@ -3868,6 +3870,7 @@ int vfs_init_default(connection_struct *conn); BOOL vfs_init_custom(connection_struct *conn); int vfs_stat(connection_struct *conn, char *fname, SMB_STRUCT_STAT *st); BOOL vfs_directory_exist(connection_struct *conn, char *dname, SMB_STRUCT_STAT *st); +int vfs_mkdir(connection_struct *conn, char *fname, mode_t mode); int vfs_unlink(connection_struct *conn, char *fname); int vfs_chmod(connection_struct *conn, char *fname,mode_t mode); int vfs_chown(connection_struct *conn, char *fname, uid_t uid, gid_t gid); |