Python C wrapper question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Shi, Jue

    #1

    Python C wrapper question


    Hello, Gurus,

    I have a question on wrapping C function in Python.


    My C code is like this:

    typedef void (WINAPI *myCallBack) (unsigned int myarg1, unsigned int myarg2)

    bool myfunc(myCallBa ck callfunc)


    Now I want to call myfunc in Python, what should I do?


    Thanks,
    Stone
  • Dave Mandelin

    #2
    Re: Python C wrapper question

    Shi, Jue wrote:[color=blue]
    > Hello, Gurus,
    >
    > I have a question on wrapping C function in Python.
    >
    >
    > My C code is like this:
    >
    > typedef void (WINAPI *myCallBack) (unsigned int myarg1, unsigned int myarg2)
    >
    > bool myfunc(myCallBa ck callfunc)
    >
    >
    > Now I want to call myfunc in Python, what should I do?[/color]

    I replied to someone else with the same question. It depends on how you
    are calling the function. If you are using DynWin/calldll, there is a
    callback generator gencb.py.

    --
    Want to play tabletop RPGs over the internet?
    Check out Koboldsoft RPZen: http://www.koboldsoft.com

    Comment

    Working...