w32taskbar.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef W32TASKBAR_H_INCLUDED
  2. #define W32TASKBAR_H_INCLUDED
  3. /*********************************************************************
  4. *
  5. * File : $Source: /cvsroot/ijbswa/current/w32taskbar.h,v $
  6. *
  7. * Purpose : Functions for creating, setting and destroying the
  8. * workspace tray icon
  9. *
  10. * Copyright : Written by and Copyright (C) 2001-2002 members of
  11. * the Privoxy team. https://www.privoxy.org/
  12. *
  13. * Written by and Copyright (C) 1999 Adam Lock
  14. * <locka@iol.ie>
  15. *
  16. * This program is free software; you can redistribute it
  17. * and/or modify it under the terms of the GNU General
  18. * Public License as published by the Free Software
  19. * Foundation; either version 2 of the License, or (at
  20. * your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will
  23. * be useful, but WITHOUT ANY WARRANTY; without even the
  24. * implied warranty of MERCHANTABILITY or FITNESS FOR A
  25. * PARTICULAR PURPOSE. See the GNU General Public
  26. * License for more details.
  27. *
  28. * The GNU General Public License should be included with
  29. * this file. If not, you can view it at
  30. * http://www.gnu.org/copyleft/gpl.html
  31. * or write to the Free Software Foundation, Inc., 59
  32. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  33. *
  34. *********************************************************************/
  35. extern HWND CreateTrayWindow(HINSTANCE hInstance);
  36. extern BOOL TrayAddIcon(HWND hwnd, UINT uID, HICON hicon, const char *pszToolTip);
  37. extern BOOL TraySetIcon(HWND hwnd, UINT uID, HICON hicon);
  38. extern BOOL TrayDeleteIcon(HWND hwnd, UINT uID);
  39. #endif /* ndef W32TASKBAR_H_INCLUDED */
  40. /*
  41. Local Variables:
  42. tab-width: 3
  43. end:
  44. */