0

I try to encapsulate winapi. How to make winapi not collision with own member class?

class SWnd
{
  public:
    HWND m_hWnd;

    BOOL UpdateWindow()
    {
      if(UpdateWindow(m_hWnd)){
        return TRUE;
      else{
        return FALSE;
      };
    };
};
Jason Mars
  • 11
  • 2

0 Answers0