WNDCLASS 的第二个成员 lpfnWndProc 是函数指针。Pointer to the window procedure. You must use the CallWindowProc function to call the window procedure. For more information, see WindowProc. 为什么初始化时为:
wndclass.lpfnWndProc = WndProc;
而不是:
wndclass.lpfnWndProc = &WndProc;