Re: [Tutor] windows api

2007-12-02 Thread bob gailer
elis aeris wrote: > i know that site, i program in c++ on windows. > > however, the syntax in different. how do I find out python's way of > using it? This is a ctypes question; See http://python.net/crew/theller/ctypes/ especially the Documentation links. ___

Re: [Tutor] windows api

2007-12-02 Thread elis aeris
i know that site, i program in c++ on windows. however, the syntax in different. how do I find out python's way of using it? On Dec 2, 2007 11:36 PM, bob gailer <[EMAIL PROTECTED]> wrote: > elis aeris wrote: > > this code uses windows api, but where do I find documentation about > > how to use

Re: [Tutor] windows api

2007-12-02 Thread bob gailer
elis aeris wrote: > this code uses windows api, but where do I find documentation about > how to use them? Hmm - looks like something from Experts Exchange. If you are asking for the Windows API Reference, try: http://msdn2.microsoft.com/en-us/library/aa383749.aspx ctypes is a Python module tha

Re: [Tutor] windows api (Out of office)

2007-12-02 Thread elis aeris
On Dec 2, 2007 11:28 PM, Pierre DeWet <[EMAIL PROTECTED]> wrote: > I will be out of the office until Monday 10 December. If your request is > urgent, please contact the helpdesk at: [EMAIL PROTECTED], > alternatively, please dial: 0207 566 8771 > > Cheers > Pierre > ___

[Tutor] windows api

2007-12-02 Thread elis aeris
this code uses windows api, but where do I find documentation about how to use them? import time import ImageGrab # Part of PIL from ctypes import * #time.sleep(5) # Load up the Win32 APIs we need to use. class RECT(Structure): _fields_ = [ ('left', c_ulong), ('top', c_ulong),