ldapcontrol.h 424 B

123456789101112131415
  1. /* See http://www.python-ldap.org/ for details.
  2. * $Id: ldapcontrol.h,v 1.6 2009/08/04 05:39:10 leonard Exp $ */
  3. #ifndef __h_ldapcontrol
  4. #define __h_ldapcontrol
  5. #include "common.h"
  6. #include "ldap.h"
  7. void LDAPinit_control(PyObject *d);
  8. void LDAPControl_List_DEL( LDAPControl** );
  9. int LDAPControls_from_object(PyObject *, LDAPControl ***);
  10. PyObject* LDAPControls_to_List(LDAPControl **ldcs);
  11. #endif /* __h_ldapcontrol */