-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcifs_common.h
59 lines (56 loc) · 2.32 KB
/
cifs_common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef CIFS_COMMON_H
#define CIFS_COMMON_H
/* ========================================================================== **
* cifs_common.h
*
* Copyright:
* Copyright (C) 2000-2003 by Christopher R. Hertel
*
* Email: [email protected]
*
* $Id: cifs_common.h,v 0.8 2004/05/30 20:45:19 crh Exp $
*
* -------------------------------------------------------------------------- **
*
* Description:
*
* This is the common header file for the modules that make up the
* "Implementing CIFS" library and toolkit. This file is included
* by all modules in the directory tree below it. It includes all
* of the common definitions, types, prototypes, etc. used by the
* library. It is not meant to be included in applications. Use
* the "cifs.h" file instead.
*
* -------------------------------------------------------------------------- **
*
* License:
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* -------------------------------------------------------------------------- **
*
* Notes:
*
* This file is *not* meant for inclusion by applications. You should
* include the "cifs.h" file instead. This file is the common set for
* all of the bits and pieces lower down in the tree.
*
* ========================================================================== **
*/
#include "cifs_typedefs.h" /* Common type declarations. */
#include "cifs_errors.h" /* Project-specific error codes. */
#include "cifs_block.h" /* CIFS library memory block manager. */
/* ========================================================================== */
#endif /* CIFS_COMMON_H */