16 Dec
2006
16 Dec
'06
1:06 p.m.
Rich asked:
Does anyone know the reasons behind the sprinkled use of _fastcall throughout the code?
An attempt at code speedups. After a little research I was suprised to see that the keyword is still supported in Microsoft compilers. __fastcall: first 2 args are passed in registers, function pops args. Remaining parameters are passed left to right. and: http://support.microsoft.com/kb/100832 Got the CD with Visual STudio, thanks. I'll have a look. Tim