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

Control Center for Windows 2K and more extended

Rate me:
Please Sign up or sign in to vote.
4.55/5 (34 votes)
26 Jan 20046 min read 124.6K   1.5K   48  
Control Center for Windows 2K and more
#pragma once

// the stucture for the login information
struct LoginInfo
{
	// the login name
	CString LName;
	// the password
	CString PassWord;
};

// the stucture for the remote program data
struct RemoteProg
{
	// the program name
	CString ProgName;
	// the PID
	CString PID;
	// the Mem Usage in KB
	CString MemUse;
};

// the driver details structure
struct Driver
{
	// name of the module
	CString ModuleName;
	// the display name of driver
	CString DisplayName;
	// the driver type
	CString DriverType;
	// the link date
	CString LinkDate;
};

// the port details
struct PortInfo
{
	CString Name;	// the name of the service
	CString Type;	// type of the port
	int PortNum;	// the port num
};

// the share data
struct ShareData
{
	CString ShareName;	// the share name
	CString FPath;		// the full path
	CString Uses;		// number of uses
	CString Descriptor;	// the descriptor
};

// the desktop data
struct DesktopData
{
	CString DeskName;
	HDESK DeskHandle;
};

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
India India
This is just a beginning. I’m yet to decide the distance I have to travel.
I’m a 2nd year B. Tech. Student and I’ve started Visual programming about a year ago. Lets hope I can continue that for the rest of 2 and a half more years.

Comments and Discussions