Julian Sp

Results 3 issues of Julian Sp

When doing typedefs in C like those: ``` C typedef char* PCHAR; typedef void* PVOID; ``` clang2py creates following ctypes: ```Python PCHAR = POINTER_T(ctypes.c_char) PVOID = POINTER_T(None) ``` shouldn't it...

documentation
feature

Like the title says, can someone explain me what the purpose of this flag is? ``` -m module, --module module Python module(s) containing symbols which will be imported instead of...

I want to add a subrepo to my main repo lets call it foo. foo is in development and a new version is comming out regulary. So i want too...

Question