stdcall

InstallShield 2020 ยป InstallScript Language Reference

Project:This information applies to InstallScript projects.The stdcall keyword is used when declaring an external DLL function that uses the stdcall calling convention. For example:

prototype stdcall POINTER kernel32.lstrcpy( byref string, byref string);

If no calling convention is specified, stdcall is assumed.

Most Windows API functions use the stdcall (WINAPI) calling convention. Consult Microsoft documentation for more information about calling conventions.

See Also