- 17
- 0
- 约7.49千字
- 约 12页
- 2017-06-10 发布于河南
- 举报
几个系统函数(国外英文资料)
几个系统函数(国外英文资料)
1. The window information
MS provides us with functions to open a particular desktop and enumerate the desktop window.
HDesk = OpenDesktop (lpszDesktop, 0, FALSE, DESKTOP_ENUMERATE);
/ / open our Default Default desktop;
EnumDesktopWindows (WNDENUMPROC)
/ / enumerations open all the Windows on the desktop, implemented by callback functions.
(HWND, LPARAM);
/ / in the callback function, we can get the title of the window and the associated process, thread information;
GetWindowText (hWnd, szWindowText, dwMaxCount);
GetWindowThreadProcessId (hWnd).
Device driver information (the s
原创力文档

文档评论(0)