Click here to Skip to main content
15,891,184 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.5K   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 _TYPEDEFS_INCLUDE_H_
#define _TYPEDEFS_INCLUDE_H_

// Typedefs for CStrings and it's iterators
typedef std::vector<CString> StringVector;
typedef std::vector<CString>::iterator SVItr;
typedef const std::vector<CString> StringVectorC;
typedef std::vector<CString>::const_iterator SVCItr;

// Typedefs for not so common functions
typedef BOOL ( WINAPI * TD_IsAppThemed )( VOID );
typedef int  ( WINAPI * TD_StrCmpLogicalW )( LPCWSTR, LPCWSTR );

typedef CMap<CString, LPCTSTR, class CPrivilege, const CPrivilege& > PrivilegeMap;

#endif // _TYPEDEFS_INCLUDE_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