| 123456789101112131415 |
- /* See http://www.python-ldap.org/ for details.
- * $Id: berval.h,v 1.1 2009/08/17 01:49:47 leonard Exp $ */
- #ifndef __h_berval
- #define __h_berval
- #include "common.h"
- #include "lber.h"
- int LDAPberval_from_object(PyObject *obj, struct berval *bv);
- int LDAPberval_from_object_check(PyObject *obj);
- void LDAPberval_release(struct berval *bv);
- PyObject *LDAPberval_to_object(const struct berval *bv);
- #endif /* __h_berval_ */
|