我有一个 std::map 的窗口,例如:
class MyWindow
{
public:
MyWindow()
{
CreateWindow(...);
}
... // rest of code
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
// code
}
}
std::map<string, MyWindow> windows;
而在 WndProc 函数内部我想知道函数中现在是哪个窗口,我怎样才能得到这个窗口的键。