r6219: This change allows us to fall back to authenticating without
[Samba/gebeck_regimport.git] / source4 / include / pstring.h
blob3683849686589fc085c953c26916920d6fc52a71
1 /*
2 samba -- Unix SMB/CIFS implementation.
4 ugly string types from Samba3. Will be removed
5 with glee when we finally don't use them.
7 Copyright (C) Andrew Tridgell 1992-2000
8 Copyright (C) John H Terpstra 1996-2000
9 Copyright (C) Luke Kenneth Casson Leighton 1996-2000
10 Copyright (C) Paul Ashton 1998-2000
11 Copyright (C) Martin Pool 2002
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #ifndef _PSTRING
30 #define PSTRING_LEN 1024
31 #define FSTRING_LEN 256
33 typedef char pstring[PSTRING_LEN];
34 typedef char fstring[FSTRING_LEN];
36 #define _PSTRING
37 #endif