Click here to Skip to main content
15,896,111 members
Articles / Programming Languages / C++

Iconizer

Rate me:
Please Sign up or sign in to vote.
4.95/5 (10 votes)
2 May 2001 148K   3.3K   62  
This handy utility adds an extra button near the minimize/maximize/close buttons of existing windows that allows you to minimise your applications to the system tray.
//===========================================================================
//
//	HomeWork from Belgium			Not licensed software  
//	1999 - 2000						No rights reserved
//
//===========================================================================
//
//	Project/Product :	Iconizer DLL
//  FileName		:	Iconizer DLL.h
//	Author(s)		:	Bart Gysens
//
//	Description		:	Header file of the Iconizer DLL
//
//	Classes			:	None
//
//	Information		:
//	  Compiler(s)	:	Visual C++ 6.0
//	  Target(s)		:	Windows 95/9(8 and Windows NT (x86)
//	  Editor		:	Visual C++ 6.0 internal editor
//
//	History
//	Vers.  Date      Aut.  Type     Description
//  -----  --------  ----  -------  -----------------------------------------
//	1.00   15 06 99  BG    Create   Original
//
//===========================================================================

#ifndef _ICONIZER_DLL_H_INCLUDED__
#define _ICONIZER_DLL_H_INCLUDED__

//===========================================================================
//	Macro's and typedefs
//===========================================================================

#ifndef DLLAPI_ICONIZER
#define DLLAPI_ICONIZER _declspec( dllimport )
#endif

//===========================================================================
//	Declarations
//===========================================================================

DLLAPI_ICONIZER BOOL WINAPI StartHook( void );
DLLAPI_ICONIZER BOOL WINAPI StopHook ( void );

#endif // _ICONIZER_DLL_H_INCLUDED__

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
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