digitalmars.D - What is "extern(System)"?
- CRy386i (3/3) Oct 31 I have confusion what's this mean? Is it use specific linking
- Zealot (3/6) Oct 31 System is the same as Windows on Windows platforms, and C on
- Nicholas Wilson (3/6) Oct 31 `extern(System)` is `extern(Windows)` on Windows and `extern(C)`
I have confusion what's this mean? Is it use specific linking thing for specific system or it's just api thing or abi? What does mean "System"?
Oct 31
On Friday, 31 October 2025 at 21:43:26 UTC, CRy386i wrote:I have confusion what's this mean? Is it use specific linking thing for specific system or it's just api thing or abi? What does mean "System"?System is the same as Windows on Windows platforms, and C on other platforms.
Oct 31
On Friday, 31 October 2025 at 21:43:26 UTC, CRy386i wrote:I have confusion what's this mean? Is it use specific linking thing for specific system or it's just api thing or abi? What does mean "System"?`extern(System)` is `extern(Windows)` on Windows and `extern(C)` everywhere else. It is an ABI thing, not just a linker thing.
Oct 31









Zealot <zealot planet.earth> 