Click here to Skip to main content
15,891,764 members
Articles / Programming Languages / C++

Tray Me!

Rate me:
Please Sign up or sign in to vote.
4.98/5 (21 votes)
1 Aug 2008CPOL9 min read 93.6K   3.7K   138  
A Beginner's Guide to Windows Hooks
// Tray Me !.h : main header file for the PROJECT_NAME application
//

#pragma once

#ifndef __AFXWIN_H__
	#error "include 'stdafx.h' before including this file for PCH"
#endif

#include "resource.h"		// main symbols
#include "Tray Me !Dlg.h"

// CTrayMeApp:
// See Tray Me !.cpp for the implementation of this class
//

class CTrayMeApp : public CWinApp
{
public:
	CTrayMeApp();
	~CTrayMeApp();

// Overrides
	public:
	virtual BOOL InitInstance();

// Implementation

	DECLARE_MESSAGE_MAP()
private:
	CTrayMeDlg * m_pApplicationDialog;
public:
	virtual int ExitInstance();
};

extern CTrayMeApp theApp;

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
India India
Hello All !
This is Mallinath S. Karkanti, from India. I'm working as a Software Developer in one of the Middle Scale Company... !

Comments and Discussions