From 1df883aa39ce69b040f9d9e72125bf4b80c714a9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 12 Aug 2009 17:52:55 +0200 Subject: libcli: move some common SMB and SMB2 stuff into libcli/smb/ This will hold code that's shared between source3 and source4. metze --- libcli/smb/smb_common.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libcli/smb/smb_common.h (limited to 'libcli/smb/smb_common.h') diff --git a/libcli/smb/smb_common.h b/libcli/smb/smb_common.h new file mode 100644 index 0000000000..f5994d4105 --- /dev/null +++ b/libcli/smb/smb_common.h @@ -0,0 +1,27 @@ +/* + Unix SMB/CIFS implementation. + + SMB and SMB2 common header + + Copyright (C) Stefan Metzmacher 2009 + + 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 3 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, see . +*/ + +#ifndef __LIBCLI_SMB_SMB_COMMON_H__ +#define __LIBCLI_SMB_SMB_COMMON_H__ + +#include "../libcli/smb/smb2_constants.h" + +#endif -- cgit