00001 #ifndef W32TASKBAR_H_INCLUDED
00002 #define W32TASKBAR_H_INCLUDED
00003 #define W32TASKBAR_H_VERSION "$Id: w32taskbar.h,v 2.0 2002/06/04 14:34:21 jongfoster Exp $"
00004 /* ******************************************************************
00005 * $Source: /cvsroot/ijbswa/current/src/w32taskbar.h,v $
00006 * ******************************************************************
00007 *
00008 * Written by and Copyright (C) 2001-2002 members of
00009 * the Privoxy team. http://www.privoxy.org/
00010 *
00011 * Written by and Copyright (C) 1999 Adam Lock
00012 * <locka@iol.ie>
00013 *
00014 * This program is free software; you can redistribute it
00015 * and/or modify it under the terms of the GNU General
00016 * Public License as published by the Free Software
00017 * Foundation; either version 2 of the License, or (at
00018 * your option) any later version.
00019 *
00020 * This program is distributed in the hope that it will
00021 * be useful, but WITHOUT ANY WARRANTY; without even the
00022 * implied warranty of MERCHANTABILITY or FITNESS FOR A
00023 * PARTICULAR PURPOSE. See the GNU General Public
00024 * License for more details.
00025 *
00026 * The GNU General Public License should be included with
00027 * this file. If not, you can view it at
00028 * http://www.gnu.org/copyleft/gpl.html
00029 * or write to the Free Software Foundation, Inc., 59
00030 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00031 *
00032 * *****************************************************************/
00033 /**
00034 * @file
00035 *
00036 * Functions for creating, setting and destroying the
00037 * workspace tray icon
00038 *
00039 *
00040 * $Log: w32taskbar.h,v $
00041 * Revision 2.0 2002/06/04 14:34:21 jongfoster
00042 * Moving source files to src/
00043 *
00044 * Revision 1.4 2002/03/26 22:57:10 jongfoster
00045 * Web server name should begin www.
00046 *
00047 * Revision 1.3 2002/03/24 12:03:47 jongfoster
00048 * Name change
00049 *
00050 * Revision 1.2 2001/07/29 18:43:08 jongfoster
00051 * Changing #ifdef _FILENAME_H to FILENAME_H_INCLUDED, to conform to
00052 * ANSI C rules.
00053 *
00054 * Revision 1.1.1.1 2001/05/15 13:59:08 oes
00055 * Initial import of version 2.9.3 source tree
00056 *
00057 *
00058 */
00059 /* *****************************************************************/
00060
00061
00062 #ifdef __cplusplus
00063 extern "C" {
00064 #endif
00065
00066 extern HWND CreateTrayWindow(HINSTANCE hInstance);
00067 extern BOOL TrayAddIcon(HWND hwnd, UINT uID, HICON hicon, const char *pszToolTip);
00068 extern BOOL TraySetIcon(HWND hwnd, UINT uID, HICON hicon);
00069 extern BOOL TrayDeleteIcon(HWND hwnd, UINT uID);
00070
00071 /* Revision control strings from this header and associated .c file */
00072
00073 /** Version information about w32taskbar.c. */
00074 extern const char w32taskbar_rcs[];
00075
00076 /** Version information about w32taskbar.h. */
00077 extern const char w32taskbar_h_rcs[];
00078
00079 #ifdef __cplusplus
00080 } /* extern "C" */
00081 #endif
00082
00083 #endif /* ndef W32TASKBAR_H_INCLUDED */
00084
00085
00086 /*
00087 Local Variables:
00088 tab-width: 3
00089 end:
00090 */
1.2.15