From bfb29e94b1e9cbbbca4dcfbbad171ba10e09ce07 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 21 Dec 2008 03:37:31 +0100 Subject: Convert auth python module to "plain" C rather than using SWIG. --- source4/auth/pyauth.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 source4/auth/pyauth.h (limited to 'source4/auth/pyauth.h') diff --git a/source4/auth/pyauth.h b/source4/auth/pyauth.h new file mode 100644 index 0000000000..de1c1c54ea --- /dev/null +++ b/source4/auth/pyauth.h @@ -0,0 +1,32 @@ +/* + Unix SMB/CIFS implementation. + Samba utility functions + Copyright (C) Jelmer Vernooij 2008 + + 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 _PYAUTH_H_ +#define _PYAUTH_H_ + +#include "pytalloc.h" +#include "auth/session.h" + +PyAPI_DATA(PyTypeObject) PyAuthSession; +#define PyAuthSession_AsSession(obj) py_talloc_get_ptr(obj) +#define PyAuthSession_Check(obj) PyObject_TypeCheck(obj, &PyAuthSession) +struct auth_session_info *PyObject_AsSession(PyObject *obj); +PyObject *PyAuthSession_FromSession(struct auth_session_info *session); + +#endif /* _PYAUTH_H */ -- cgit