On Monday, 21 September 2020 at 11:14:06 UTC, Виталий Фадеев wrote:
How to implement fastcall ?
( stdcall is calling convention for pass function arguments via registers )

The supported linkage attributes are here:

https://dlang.org/spec/attribute.html#linkage

`extern(Windows)` is stdcall, `extern(C)` is cdecl. Unless it's a hidden feature that I'm unaware of, fastcall is not supported.

Reply via email to