comparison plugins/docklet/docklet-win32.c @ 6425:26b739bc9f1a

[gaim-migrate @ 6933] Warnings and gaim_debugs committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Mon, 11 Aug 2003 18:54:38 +0000
parents 14661ae901cf
children c2fb9192377b
comparison
equal deleted inserted replaced
6424:8e7f1662d802 6425:26b739bc9f1a
61 static LRESULT CALLBACK systray_mainmsg_handler(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) { 61 static LRESULT CALLBACK systray_mainmsg_handler(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) {
62 static UINT taskbarRestartMsg; /* static here means value is kept across multiple calls to this func */ 62 static UINT taskbarRestartMsg; /* static here means value is kept across multiple calls to this func */
63 63
64 switch(msg) { 64 switch(msg) {
65 case WM_CREATE: 65 case WM_CREATE:
66 gaim_debug(GAIM_DEBUG_INFO, "wgaim_systray", "WM_CREATE\n"); 66 gaim_debug(GAIM_DEBUG_INFO, "tray icon", "WM_CREATE\n");
67 taskbarRestartMsg = RegisterWindowMessage("TaskbarCreated"); 67 taskbarRestartMsg = RegisterWindowMessage("TaskbarCreated");
68 break; 68 break;
69 69
70 case WM_TIMER: 70 case WM_TIMER:
71 gaim_debug(GAIM_DEBUG_INFO, "wgaim_systray", "WM_TIMER\n"); 71 gaim_debug(GAIM_DEBUG_INFO, "tray icon", "WM_TIMER\n");
72 break; 72 break;
73 73
74 case WM_DESTROY: 74 case WM_DESTROY:
75 gaim_debug(GAIM_DEBUG_INFO, "wgaim_systray", "WM_DESTROY\n"); 75 gaim_debug(GAIM_DEBUG_INFO, "tray icon", "WM_DESTROY\n");
76 break; 76 break;
77 77
78 case WM_TRAYMESSAGE: 78 case WM_TRAYMESSAGE:
79 { 79 {
80 int type = 0; 80 int type = 0;