| 1 | /*
|
|---|
| 2 | Unix SMB/CIFS implementation.
|
|---|
| 3 | Samba utility functions
|
|---|
| 4 | Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2008
|
|---|
| 5 |
|
|---|
| 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 3 of the License, or
|
|---|
| 9 | (at your option) any later version.
|
|---|
| 10 |
|
|---|
| 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.
|
|---|
| 15 |
|
|---|
| 16 | You should have received a copy of the GNU General Public License
|
|---|
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|---|
| 18 | */
|
|---|
| 19 |
|
|---|
| 20 | #ifndef _PYRPC_H_
|
|---|
| 21 | #define _PYRPC_H_
|
|---|
| 22 |
|
|---|
| 23 | #include "libcli/util/pyerrors.h"
|
|---|
| 24 |
|
|---|
| 25 | #ifndef Py_TYPE /* Py_TYPE is only available on Python > 2.6 */
|
|---|
| 26 | #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
|
|---|
| 27 | #endif
|
|---|
| 28 |
|
|---|
| 29 | #define PY_CHECK_TYPE(type, var, fail) \
|
|---|
| 30 | if (!PyObject_TypeCheck(var, type)) {\
|
|---|
| 31 | PyErr_Format(PyExc_TypeError, __location__ ": Expected type '%s' for '%s' of type '%s'", (type)->tp_name, #var, Py_TYPE(var)->tp_name); \
|
|---|
| 32 | fail; \
|
|---|
| 33 | }
|
|---|
| 34 |
|
|---|
| 35 | #define dom_sid0_Type dom_sid_Type
|
|---|
| 36 | #define dom_sid2_Type dom_sid_Type
|
|---|
| 37 | #define dom_sid28_Type dom_sid_Type
|
|---|
| 38 | #define dom_sid0_Check dom_sid_Check
|
|---|
| 39 | #define dom_sid2_Check dom_sid_Check
|
|---|
| 40 | #define dom_sid28_Check dom_sid_Check
|
|---|
| 41 |
|
|---|
| 42 | typedef struct {
|
|---|
| 43 | PyObject_HEAD
|
|---|
| 44 | TALLOC_CTX *mem_ctx;
|
|---|
| 45 | struct dcerpc_pipe *pipe;
|
|---|
| 46 | struct dcerpc_binding_handle *binding_handle;
|
|---|
| 47 | } dcerpc_InterfaceObject;
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | /*
|
|---|
| 51 | these prototypes should be generated by the python pidl backend, but
|
|---|
| 52 | aren't yet. They are needed when one module that has python access
|
|---|
| 53 | is accessed by another module
|
|---|
| 54 | */
|
|---|
| 55 | union netr_LogonLevel *py_export_netr_LogonLevel(TALLOC_CTX *mem_ctx, int level, PyObject *in);
|
|---|
| 56 | union netr_Validation;
|
|---|
| 57 | PyObject *py_import_netr_Validation(TALLOC_CTX *mem_ctx, int level, union netr_Validation *in);
|
|---|
| 58 |
|
|---|
| 59 | #endif /* _PYRPC_H_ */
|
|---|