Re: Calling DLL with several data fields in output params

2006-01-28 Thread Java script Dude
>Why wouldn't you just use the target DLL that you already have? Still in the process of getting the software from the vendor. However, I have had luck in playing around with win32 api and am now getting the hang of using ctypes. Looks like I am going down the Python road. Thanks for the info :

Re: Calling DLL with several data fields in output params

2006-01-28 Thread Peter Hansen
Java script Dude wrote: > I basically need to write a script that will make calls to a DLL and > parse the return result for API calls that consist of several data > fields in the input and output parameters. > > [Questions] > [q1] Is ctypes the right Python library to use for this interaction. >

Calling DLL with several data fields in output params

2006-01-28 Thread Java script Dude
Hi, I basically need to write a script that will make calls to a DLL and parse the return result for API calls that consist of several data fields in the input and output parameters. [Questions] [q1] Is ctypes the right Python library to use for this interaction. . . . . . I know about calldll bu