Francois Gouget fgouget@free.fr writes:
Yesterday's winapi_check path warns about 32 bit -register functions that are implemented by stdcall functions, but not about 16 bit -register functions implemented by stdcall functions. The reason is that for the latter the calling convention is set to 'pascal' or 'pascal16' in winapi_check. However I suspect these too should be implemented as cdecl.
They could, but that will require some changes to the .spec.c code, right now the calling convention is based on the type specified in the spec file, so pascal register functions have to be WINAPI.
On Fri, 22 Oct 2004, Alexandre Julliard wrote: [...]
They could, but that will require some changes to the .spec.c code, right now the calling convention is based on the type specified in the spec file, so pascal register functions have to be WINAPI.
No problem. When/if this happens, let me know (in case I forget<g>) and I'll update winapi_check accordingly.