I'm looking for a list of win32 API in some "database"/XML format.
I'd need it to easily create a "conversion layer" between win32 API and the higher level language I'm using (harbour/xharbour). Since this runs Pcode, it is necessary to transform parameters to C standard...
Instead of doing manual code write, I'd like to automate the process...
just for example, the windows API definition (taken from MSDN) DWORD WINAPI GetSysColor( __in int nIndex );
should be transformed in HB_FUNC( GETSYSCOLOR ) { hb_retnl( (LONG) GetSysColor( hb_parni( 1 ) ) ); }