Click here to Skip to main content
15,886,689 members
Articles / Programming Languages / C++

A Cleanup API for Windows

Rate me:
Please Sign up or sign in to vote.
4.83/5 (23 votes)
24 Aug 2006CPOL18 min read 229K   3.7K   84  
Provides a general cleanup API for Windows, ported into Win32 and COM dynamic-link libraries.
// Cleanup_ClientDlg.h : header file
//

#pragma once


// CCleanup_ClientDlg dialog
class CCleanup_ClientDlg : public CDialog
{
// Construction
public:
	CCleanup_ClientDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	enum { IDD = IDD_CLEANUP_CLIENT_DIALOG };

	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support


// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnButtonIECacheClicked();
	afx_msg void OnButtonIEHistoryClicked();
	afx_msg void OnButtonIEAddressBarClicked();
	afx_msg void OnButtonRunHistoryClicked();
	afx_msg void OnButtonRecentDocsHistoryClicked();
	afx_msg void OnButtonRecycleBinClicked();
	afx_msg void OnButtonIECookiesClicked();
};

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions