Re: Accessing shared library file...

2005-09-16 Thread Peter Hansen
Ernesto wrote: > Where is the ctypes mailing list? GIYF (Google is your friend) -- http://mail.python.org/mailman/listinfo/python-list

Re: Accessing shared library file...

2005-09-16 Thread Thomas Jollans
Ernesto wrote: > The .dll file is a shared library file that is associated with a > programming interface for a semi-conductor chip. The chip drivers come > in two different flavors: One is a .dll (for Windows) and the other is > a shared library file for Linux. The name of the Linux file is > "

Re: Accessing shared library file...

2005-09-16 Thread Ernesto
Where is the ctypes mailing list? -- http://mail.python.org/mailman/listinfo/python-list

Re: Accessing shared library file...

2005-09-15 Thread Peter Hansen
Ernesto wrote: > The .dll file is a shared library file that is associated with a > programming interface for a semi-conductor chip. The chip drivers come > in two different flavors: One is a .dll (for Windows) and the other is > a shared library file for Linux. The name of the Linux file is > "

Re: Accessing shared library file...

2005-09-15 Thread Ernesto
The .dll file is a shared library file that is associated with a programming interface for a semi-conductor chip. The chip drivers come in two different flavors: One is a .dll (for Windows) and the other is a shared library file for Linux. The name of the Linux file is "nameofFile.so.0.4.5" The

Re: Accessing shared library file...

2005-09-15 Thread Larry Bates
You need to tell us what library file (.dll) are you accessing on Windows. The interface to whatever the .dll is used for will most likely be completely different on Linux. -Larry Bates Ernesto wrote: > I'm in the process of moving a Python application from Windows to > Linux. This means that

Accessing shared library file...

2005-09-15 Thread Ernesto
I'm in the process of moving a Python application from Windows to Linux. This means that the drivers for windows ".dll" now must be Linux drivers "shared library file" (.so I think). With Windows, I used: ctypes ("from ctypes import windll") Then "_dll = windll.NAME" I'm not sure how to includ