在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Windows系统编程 → c++ 进程查看工具 能查看 所有进程句柄以及详细信息

c++ 进程查看工具 能查看 所有进程句柄以及详细信息

Windows系统编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:0.20M
  • 下载次数:26
  • 浏览次数:1616
  • 发布时间:2013-09-18
  • 实例类别:Windows系统编程
  • 发 布 人:crazycode
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 进程 句柄

实例介绍

【实例简介】

【实例截图】

【核心代码】

#include "stdafx.h"
#include "window.h"

#define MAKE_STR( ToStr ) _T( #ToStr )

// Initialize static variable
StyleParser Window::m_StyleParser;

// Clears window data list
void ClearWindowDataList( WindowList& wlWindowList )
{
    // Clear data
    POSITION pstPos = wlWindowList.GetHeadPosition();
    while( pstPos )
    {
        PWindow pWindow = wlWindowList.GetNext( pstPos );
        delete pWindow;
    }

    // Remove all items from list
    wlWindowList.RemoveAll();
}

//************************************
// Method:    RetrieveWndStyles
// FullName:  Window::RetrieveWndStyles
// Access:    protected 
// Returns:   void
// Qualifier:
//************************************
void Window::RetrieveWndStyles()
{
    // Parse out class style and store it in string
    GetStyleParser().GetClassStyleAsString( GetClass().style, GetClassStyleString() );

    // Ge normal window style
    GetStyleParser().GetWindowStyleAsString( GetStyle(), GetWindowStyleString() );

    // Get control specific style if any
    GetStyleParser().GetStyleStringForWindowByClassName( GetStyle(), 
                                                         GetClassName(),
                                                         GetWindowStyleString() );

    // Get default extended style for a window
    GetStyleParser().GetWindowStyleExAsString( GetStyleEx(), GetWindowStyleExString() );

    // Style extended, do special handling for list control
    DWORD dwStyleEx = 0;

    // Specialized extended style handling for some controls like
    // list view, comboex, tab controls etc
    if( IsListControl() )
    {
        Utils::SndMsgTimeOutHelper( GetHandle(), LVM_GETEXTENDEDLISTVIEWSTYLE, 0, 0, dwStyleEx );
    }
    else if( IsComboExControl() )
    {
        Utils::SndMsgTimeOutHelper( GetHandle(), CBEM_GETEXTENDEDSTYLE, 0, 0, dwStyleEx );
    }
    else if( IsTabControl() )
    {
        Utils::SndMsgTimeOutHelper( GetHandle(), TCM_GETEXTENDEDSTYLE, 0, 0, dwStyleEx );
    }
    else
    {
        dwStyleEx = GetStyleEx();
    }// End if

    // Parse out window style ex and store it in string
    GetStyleParser().GetStyleExStringForWindowByClassName( dwStyleEx, 
                                                           GetClassName(),
                                                           GetWindowStyleExString() );
}// End RetrieveWndStyles

/** 
 * 
 * Extracts details pertaining to a window
 * 
 * @param       WindowObj - Window data
 * @return      void
 * @exception   Nil
 * @see         Nil
 * @since       1.0
 */
void Window::ExtractWindowDetails( const HWND hWnd_i )
{
    // Set window handle
    SetHandle( hWnd_i );

    // Set thread id of window
    SetThreadId( ::GetWindowThreadProcessId( GetHandle(), 0 ));

    // Get class name of window
    TCHAR szBuffer[MAX_PATH] = { 0 };
    ::GetClassName( GetHandle(), szBuffer, MAX_PATH );
    GetClassName() = szBuffer;

    GetClass().cbSize = sizeof( GetClass() );
    GetClassInfoEx( AfxGetInstanceHandle(), szBuffer, &GetClass() );

    // Get window text if any
    InternalGetWindowText( GetHandle(), GetTitle().GetBufferSetLength( MAX_PATH ), MAX_PATH );
    GetTitle().ReleaseBuffer();

    // Get normal style
    SetStyle( GetWindowLong( GetHandle(), GWL_STYLE ));

    // Get extended style
    SetStyleEx( GetWindowLong( GetHandle(), GWL_EXSTYLE ));

    // Get window id
    SetId( GetWindowLong( GetHandle(), GWL_ID ));

    // Get parent window
    SetParentHandle( RCAST( HWND, GetWindowLong( GetHandle(), GWL_HWNDPARENT )));

    // Window state i.e. window is maximized, minimized or restored
    GetStateAsString( GetState() );

    // For style parsing
    RetrieveWndStyles();

    // Window bounds
    CRect crBounds;
    GetWindowRect( GetHandle(), &crBounds );
    if( crBounds.Width() || crBounds.Height() )
    {
        GetBounds().Format( _T( "L:%d T:%d R:%d B:%d" ), crBounds.left, 
                                                         crBounds.top, 
                                                         crBounds.right, 
                                                         crBounds.bottom );
    }// End if

    // Retrieves unicode support status for windows
    SetUnicode( IsWindowUnicode( GetHandle() ));

    // Get window icon
    DWORD dwResult = 0;
    Utils::SndMsgTimeOutHelper( GetHandle(), 
                                WM_GETICON, 
                                ICON_SMALL, 
                                0,
                                dwResult );
    // Get window icon
    SetIcon( RCAST( HICON, dwResult ));

    // Get enabled status of window
    SetEnabled( IsWindowEnabled( GetHandle() ));
}// End ExtractWindowDetails


//************************************
// Method:    GetStateAsString
// FullName:  Window::GetStateAsString
// Access:    protected 
// Returns:   void
// Qualifier:
// Parameter: CString & csState_o
//************************************
void Window::GetStateAsString( CString& csState_o ) const
{
    // Get state of window
    if( ::IsZoomed( GetHandle() ))
    {
        // Window is in a maximized state
        csState_o = _T( "Maximized" );
    }
    else if( ::IsIconic( GetHandle() ))
    {
        // Window is in a minimized state
        csState_o = _T( "Minimized" );
    }
    else if( ::IsWindowVisible( GetHandle() ))
    {
        // State of window is normal
        csState_o = _T( "Restored" );
    }
    else
    {
        // Must be an invisible window
        csState_o = _T( "Invisible" );
    }// End if

}// End GetStateAsString

void Window::ParseOutStyles( ULONG ulStyle_i, 
                             CString& csStyle_o, 
                             const PFN_STRING_FOR_STYLE pfnStyleParser_i ) const
{
    ULONG ulMasker = 1;
    while( ulStyle_i )
    {
        const ULONG ulCurrentStyle = ulMasker & ulStyle_i;
        if( ulCurrentStyle ) 
        {
            ( this->*pfnStyleParser_i )( ulCurrentStyle, csStyle_o );
        }

          ulMasker;

        if( ulCurrentStyle && ulStyle_i )
        {
            csStyle_o  = _T( " | " );
        }
    }// End while
}

标签: 进程 句柄

实例下载地址

c++ 进程查看工具 能查看 所有进程句柄以及详细信息

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警