登录 注册
当前位置:主页 > 资源下载 > 33 > 任务管理器的源代码

任务管理器的源代码

  • 更新:2024-09-24 12:21:14
  • 大小:209KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Java - 后端
  • 格式:RAR

资源介绍

有点像微软的源码,我也不清楚!反正不错了.


INT_PTR CALLBACK MainWindowProc(
HWND hwnd, // handle to dialog box
UINT uMsg, // message
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
)
{
static BOOL fIsHidden = FALSE;

// If this is a size or a move, update the position in the user's options

if (uMsg == WM_SIZE || uMsg == WM_MOVE)
{
// We don't want to start recording the window pos until we've had
// a chance to set it to the intialial position, or we'll lose the
// user's preferences

if (fAlreadySetPos)
if (!IsIconic(hwnd) && !IsZoomed(hwnd))
GetWindowRect(hwnd, &g_Options.m_rcWindow);
}