"Anand" <anand.pasoria at in.bosch.com> wrote:
> Can I get a code snippet of how to call a DLL and it's functionalities from
> Python?
start here:
http://starship.python.net/crew/theller/ctypes/
(there's no standard mechanism in Python for calling functions in
DLLs, unless they're explicitly designed for Python, in which case
you can simply import them)
</F>