Apply the changes that Derrell Lipman supplied ...
[Samba/gebeck_regimport.git] / source3 / python / py_smb.h
blob31bcf4aab2e37b9125a2c5d048a3e8645ba382a1
1 /*
2 Python wrappers for DCERPC/SMB client routines.
4 Copyright (C) Tim Potter, 2002
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #ifndef _PY_SMB_H
22 #define _PY_SMB_H
24 #include "python/py_common.h"
26 /* cli_state handle object */
28 typedef struct {
29 PyObject_HEAD
30 struct cli_state *cli;
31 } cli_state_object;
33 /* Exceptions raised by this module */
35 extern PyTypeObject cli_state_type;
37 extern PyObject *smb_ntstatus;
39 #endif /* _PY_SMB_H */