함수 호출 규약(Function Calling Convention)에 대하여 정리해 보자. 일단 Microsoft의 Calling Convention의 종류는 다음과 같다 Calling Convention Argument Passing Stack Maintenance Name Decoration (C only) Notes __cdecl Right to left. Calling function pops arguments from the stack. Underscore prefixed to function names. Ex: _Foo. This is the default calling convention for C/C++ __stdcall Right to left. Called function pops it..