in reply to Re^5: mapping a C structure with perlXS
in thread mapping a C structure with perlXS

Hi, sorry for my non-answering... I found the solution by using in my C code the funtion :
PTR2UV(pointer); PTR2IV(pointer); PTR2NV(pointer); INT2PTR(pointertotype, integer);
they allow me to keep connexion handlers from C code to Perl and Perl to C code...;) thank you for your help !!!