📜  在函数中写WINAPI字的目的是什么 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:41.911000             🧑  作者: Mango

代码示例1
WINAPI is a macro that evaluates to __stdcall , a Microsoft-specific keyword that specifies a calling convention where the callee cleans the stack. The function's caller and callee need to agree on a calling convention to avoid corrupting the stack.