home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2000 January / PCW0001.ISO / software / hw / pc2000 / junkbust.exe / w32taskbar.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-21  |  528 b   |  17 lines

  1. /* Public functions for creating, setting and destroying the tray icon
  2.  *
  3.  * Written and copyright 1999 Adam Lock <locka@iol.ie>
  4.  *
  5.  * Distributed under the GNU General Public License; see the README file.
  6.  * This code comes with NO WARRANTY.
  7.  */
  8. #ifndef W32TASKBAR_H
  9. #define W32TASKBAR_H
  10.  
  11. HWND CreateTrayWindow(HINSTANCE hInstance);
  12. BOOL TrayAddIcon(HWND hwnd, UINT uID, HICON hicon, const char *pszToolTip);
  13. BOOL TraySetIcon(HWND hwnd, UINT uID, HICON hicon);
  14. BOOL TrayDeleteIcon(HWND hwnd, UINT uID);
  15.  
  16. #endif
  17.