Click here to Skip to main content
15,867,756 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I need to call a C function from python which looks like this:

C++
void func(void **buffer, int *szBuffer)
{
    //allocate memory to buffer
    *szBuffer = req_size;
    *buffer = malloc(req_size);

    //buffer filled
}


Then i must use the buffer in python. How can i achieve this. Please help!
Posted

 
Share this answer
 
The 'natural way' to do that would be wrapping your function in way Python may understand, i.e. writing a proper C extension for Python. See: "Extending Python with C or C++"[^].
 
Share this answer
 
I dont know how python function works, But I will suggest you to get development kit for Python. Follow the instruction provided there
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900