<<< C-style Caller and Callee Summary | Index | FASTCALL Caller and Callee Summary >>> |
The following sample illustrates the code generated in the calling function and in the called function to support __stdcall, the standard calling convention:
int __stdcall StdFunc( int a, int b ); calling function called function ----------------- --------------------- push b _StdFunc@8 PROC NEAR push a . call _StdFunc@8 . . . . RET 8 . _StdFunc@8 ENDP
<<< C-style Caller and Callee Summary | Index | FASTCALL Caller and Callee Summary >>> |