/*****************感谢关注*******************/
//////////////////Creamdog////////////////////
static CWnd* PASCAL FindWindow( LPCTSTR lpszClassName, LPCTSTR lpszWindowName );lpszClassName
Points to a null-terminated string that specifies the window’s class name (a WNDCLASS structure). If lpClassName is NULL, all class names match.指向无终止符的字符串,该字符串指定了该窗体的类名称(一个WNDCLASS结构体)。如果lpClassName为空,则匹配所有类的名称。lpszWindowName
Points to a null-terminated string that specifies the window name (the window’s title). If lpWindowName is NULL, all window names match.
指向一个无终止符的字符串,此字符串指定了窗体的名称(窗体标题)。如果lpWindowName为空,则匹配所有窗体的名称。要向更好的了解参数的意义,好的英文基础是不可少的!