A c code snippet,the c file compiled to a dll file named libxxx.dll:
typedef void* HND;
typedef unsigned char UCHAR;
typedef short int SWORD;
...
int Connect(
HND* hnd,
UCHAR* ipaddr,
SWORD port){
..
return 1;
}
then How to handle function Connect using python and ct
2008/12/22 Simon Brunning
> 2008/12/21 :
> > The code below opens the Choose Font dialog on my Spanish Windows
> version:
> >
> > py> from pywinauto.application import Application
> > py> app = Application.start("Notepad.exe")
>
> Notepad's menus are build with MFC. Word's menus are not. Trust m