deb-python-pyldap/Modules/berval.h

17 lines
494 B
C

/* 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);
PyObject *LDAPberval_to_unicode_object(const struct berval *bv);
#endif /* __h_berval_ */