Click here to Skip to main content
15,895,833 members
Articles / Desktop Programming / MFC

Task Manager Extension 2.0

Rate me:
Please Sign up or sign in to vote.
4.92/5 (149 votes)
22 Jan 2007CDDL11 min read 598.4K   18.7K   263  
Task Manager Extension. This is a Windows Task Manager (NT/2000/XP/2003) plug-in. It adds lots of useful features to the standard Task Manager. It can show process modules, memory map, used handles, open files, file properties and a lot of other info!
// Product version defines
#pragma once
#define TO_STR2(x)	#x
#define TO_STR(x)	TO_STR2(x)

#define RUSSIAN_RESOURCES

#define COPYRIGHT1					"Written by Zoltan Csizmadia (zoltan_csizmadia@yahoo.com), 2000"
#define COPYRIGHT2					"Improved and refactoried by Sergey Kolomenkin (kolomenkinjob@tut.by), 2005"


#define APPVERSION					2
#define APPREVISION					0
#define APPSUBREVISION				0
#define APPRELEASE					240

#define	PRODUCTNAME					"Task Manager Extension"

#define VERSIONCOPYRIGHT			"Copyright � 2001 - 2005, Zoltan Csizmadia and Sergey Kolomenkin\0"
#define VERSIONCOMMENTS				COPYRIGHT1 "\r\n\r\n" COPYRIGHT2 "\0"
#define VERSIONPRODUCTNAME			PRODUCTNAME "\0"
#define VERSIONINTERNALNAME			"TaskManagerEx\0"

#define VERSIONPRODUCTVERSIONSTR	TO_STR(APPVERSION) "." TO_STR(APPREVISION) "." TO_STR(APPSUBREVISION) " build " TO_STR(APPRELEASE) "\0"

// Module Info:
#define VERSIONFILEVERSIONSTR		TO_STR(MODVERSION) "." TO_STR(MODREVISION) "." TO_STR(MODSUBREVISION) " build " TO_STR(MODRELEASE) "\0"

// Russian:
#ifdef RUSSIAN_RESOURCES

#define VERSIONCOPYRIGHT_RUS		"Copyright � 2001 - 2005, Zoltan Csizmadia, ���������� ������\0"
#define VERSIONCOMMENTS_RUS			"�����: Zoltan Csizmadia (zoltan_csizmadia@yahoo.com), 2000\r\n\r\n�������� � ���������: ���������� ������ (kolomenkinjob@tut.by), 2005\0"
#define VERSIONPRODUCTNAME_RUS		VERSIONPRODUCTNAME
#define VERSIONINTERNALNAME_RUS		VERSIONINTERNALNAME

#define VERSIONPRODUCTVERSIONSTR_RUS	TO_STR(APPVERSION) "." TO_STR(APPREVISION) "." TO_STR(APPSUBREVISION)  " ������ " TO_STR(APPRELEASE) "\0"

	// Module Info:
#define VERSIONFILEVERSIONSTR_RUS	TO_STR(MODVERSION) "." TO_STR(MODREVISION) "." TO_STR(MODSUBREVISION)  " ������ " TO_STR(MODRELEASE) "\0"
#define VERSIONORIGINALFILENAME_RUS	VERSIONORIGINALFILENAME

#endif

//#define VERSIONCOMPANYNAME			"\0"
//#define VERSIONTRADEMARKS				"\0"
//#define VERSIONPRIVATEBUILD			"\0"
//#define VERSIONSPECIALBUILD			"\0"

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 Common Development and Distribution License (CDDL)


Written By
Software Developer (Senior)
Belarus Belarus
He is a young and forward-looking software developer. He also has lots of interesting hobbies like snowboarding, bicycle riding, carting racing and of course talking about himself in a third person. Smile | :)

github.com/kolomenkin

Curriculum Vitae

Comments and Discussions