Click here to Skip to main content
15,892,839 members
Articles / Desktop Programming / MFC

Process viewer

Rate me:
Please Sign up or sign in to vote.
4.94/5 (104 votes)
9 Mar 2008CPOL9 min read 456.9K   22K   294  
Lists out the details of running processes in a system, loaded drivers, loaded dlls, version of each dll and process, process times, command line, owner, priority, GDI resource usage, privileges, loaded symbols, window heirarchy, autostart app finding and more.
#ifndef _WINDOW_COLLECTION_H_
#define _WINDOW_COLLECTION_H_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "afxtempl.h"
#include "TreeCtrlEx.h"
#include "ProcessWindowCollection.h"

/**
 * Copyright(c) 2007 Nibu babu thomas
 *
 * WindowCollection - Enumerates all parent windows and maintains a collection of such 
 *                    windows.
 *
 * @author :    Nibu babu thomas
 * @version:    1.0            Date:  2007-06-01
 */
class WindowCollection  
{
    public:

	    WindowCollection();
	    virtual ~WindowCollection();

        // Main enumerator
        bool Enumerate();

        // Clear map
        void Clear();

        // Returns window handle for process id
        const PProcessWindowCollection GetProcessWindowCollection( const DWORD dwProcessID_i ) const;

    private:
        
        // Window enumeration function
        static BOOL CALLBACK EnumerateWindowsCB( HWND hWnd_i, LPARAM lParam_i );
        CMap<DWORD, DWORD, PProcessWindowCollection, PProcessWindowCollection&> m_WindowDataMap;
};

#endif // _WINDOW_COLLECTION_H_

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Microsoft
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions