typedef struct {
    UINT style;
    WNDPROC lpfnWndProc;
    int cbClsExtra;
    int cbWndExtra;
    HINSTANCE hInstance;
    HICON hIcon;
    HCURSOR hCursor;
    HBRUSH hbrBackground;
    LPCTSTR lpszMenuName;
    LPCTSTR lpszClassName;
} WNDCLASS, *PWNDCLASS;对结构体成员认识上有点问题,
UINT ------是无符号整型    style ------MSDN 说是类类型
而我们平时定义变量都是 :类型 + 变量名 ,这为什么是  类型 + 类型  ?