berval.h 429 B

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