I am looking for a list of win32 APIs in some kind of "database" / XML format.
I would need to easily create a "conversion level" between the win32 API and the higher level language that I use (harbor / xharbour). Since this launches Pcode, you need to convert the parameters to the standard C ...
Instead of manually entering the code, I would like to automate the process ...
e.g. Windows API definition (taken from MSDN)
DWORD WINAPI GetSysColor(
__in int nIndex
);
should be converted to
HB_FUNC( GETSYSCOLOR )
{
hb_retnl( (LONG) GetSysColor( hb_parni( 1 ) ) );
}
francesco
source
share