[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: MS compiler 7.1 (Visual Studio .NET 7.1 and DDK 2003) issues withmak
From: |
Jerker Bäck |
Subject: |
RE: MS compiler 7.1 (Visual Studio .NET 7.1 and DDK 2003) issues withmake 3.80 |
Date: |
Sun, 24 Apr 2005 15:31:32 +0200 |
Alessandro Vesely:
> The language we are using is C, for the good and the bad of it.
> And I don't think that the time and space that __stdcall
> might have globally saved at runtime will ever balance the
> time and space devoted to discussing it.
Eli Zaretskii:
> Why did you need to use __stdcall?
At this stage: It will catch any callback into the CRT without having been
declared __cdecl. This is important since the Microsoft CRT are built with
__cdecl calling convention while in all other cases it is built with
__stdcall (WINAPI) calling convention. Some developers love to use the
__fastcall calling convention. If these callbacks are declared as __cdecl,
the code will be compatibel in either case.
JB