Hi,
Please help me to solve this problem.
I have such function written in C:
search(
const char *base,
int scope,
const char *filter,
char **attrs,
LDAP_Entries **entries);
where LDAP_Entries is a structure.
When I call this function from Python, :
search("ou=appl ications;ou=gen eral_data;o=zus ,c=pl",
SEARCH_SCOPE_SU BTREE,
"cn=KW_*",attrs ,entries)
where :
attrs = ["cn","comma nd"]
entries = []
it says:
TypeError: Type error. Expected _p_p_char
This function return data in entries parameter.
I dont want to have access to data in entries,but only an object (handler to
it), so I can put returned value in entris into other function,also called
from Python.
Do i have to make a typdef functions , so wrapper understands what I want to
have back ?
thanx for all your help,
mwallace.
Please help me to solve this problem.
I have such function written in C:
search(
const char *base,
int scope,
const char *filter,
char **attrs,
LDAP_Entries **entries);
where LDAP_Entries is a structure.
When I call this function from Python, :
search("ou=appl ications;ou=gen eral_data;o=zus ,c=pl",
SEARCH_SCOPE_SU BTREE,
"cn=KW_*",attrs ,entries)
where :
attrs = ["cn","comma nd"]
entries = []
it says:
TypeError: Type error. Expected _p_p_char
This function return data in entries parameter.
I dont want to have access to data in entries,but only an object (handler to
it), so I can put returned value in entris into other function,also called
from Python.
Do i have to make a typdef functions , so wrapper understands what I want to
have back ?
thanx for all your help,
mwallace.
Comment