我正在使用WinAPI创建一个Windows应用程序。在处理窗口的WM_PAINT消息时,我正在使用TextOut()函数向用户显示更新的文本。caseWM_PAINT:{PAINTSTRUCTps;HDChdc;hdc=BeginPaint(hwnd,&ps);SelectObject(hdc,hfDefault);//displaytheuserdatainthewindowTextOut(hdc,10,70,"Points:0",9);TextOut(hdc,10,85,"Level:0",8);//...EndPaint(hwnd,&ps);}break;如何在调用函数后更改T