RT

解决方案 »

  1.   

    一般带EX是不带EX函数扩展版本
    如CWnd::Create 和CWnd::CreateExvirtual BOOL Create( LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
      
    BOOL CreateEx( DWORD dwExStyle, LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hwndParent, HMENU nIDorHMenu, LPVOID lpParam = NULL );用**EX完全可以实现**函数的功能(内部可能也是**EX实现**的),但一般**EX的扩展功能不常用就用**了
      

  2.   

    Win32API设计时尽可能保证与Win16API兼容,对一些函数作了修改。
    Ex表示它是Win16的扩展。