WINAPI与CALLBACK

#define WINAPI __stdcall
#define CALLBACK __stdcall
 
都是__stdcall,无本质区别。
CALLBACK只是为了告诉我们这是一个回调函数。
原文地址:https://www.cnblogs.com/fwst/p/3621303.html