参数原形
HWND CreateWindow(
  LPCTSTR lpClassName,  // pointer to registered class name
  LPCTSTR lpWindowName, // pointer to window name
  DWORD dwStyle,        // window style
  int x,                // horizontal position of window
  int y,                // vertical position of window
  int nWidth,           // window width
  int nHeight,          // window height
  HWND hWndParent,      // handle to parent or owner window
  HMENU hMenu,          // handle to menu or child-window identifier
  HANDLE hInstance,     // handle to application instance
  LPVOID lpParam        // pointer to window-creation data
);
=================================================================
MSDN上参数原形确实是11个
=================================================================
但朋友我在VC 6.0环境下 当我写完参数名后打上"("竟然发现只有10个参数
不相信的朋友可以试试,我想问问 怎么才会出现这种情况的?