diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-08 07:59:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:35 -0500 |
commit | 2cbbbe35352e2833a1acceb757538db69f5db5f0 (patch) | |
tree | dae67d14999a37649154555738b4b92f5a0aa0c8 /source4/ntvfs/posix/vfs_posix.h | |
parent | 24f972a071e21cae80a2bd02b15928f9dad486d2 (diff) | |
download | samba-2cbbbe35352e2833a1acceb757538db69f5db5f0.tar.gz samba-2cbbbe35352e2833a1acceb757538db69f5db5f0.tar.bz2 samba-2cbbbe35352e2833a1acceb757538db69f5db5f0.zip |
r2251: forgot to add vfs_posix.h in my last commit
note that this is just a skeleton so far. More to come soon.
(This used to be commit efc8850b9aa9348f5f7c4b342aa76dab1635e7d4)
Diffstat (limited to 'source4/ntvfs/posix/vfs_posix.h')
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/vfs_posix.h b/source4/ntvfs/posix/vfs_posix.h new file mode 100644 index 0000000000..6b05240f43 --- /dev/null +++ b/source4/ntvfs/posix/vfs_posix.h @@ -0,0 +1,27 @@ +/* + Unix SMB/CIFS implementation. + + POSIX NTVFS backend - header + + Copyright (C) Andrew Tridgell 2004 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +*/ + +/* this is the private structure for the posix vfs backend. It is used + to hold per-connection (per tree connect) state information */ +struct pvfs_state { + const char *base_directory; +}; |