Changeset 265 for trunk/src/3rdparty/os2
- Timestamp:
- Oct 29, 2009, 2:13:16 AM (16 years ago)
- Location:
- trunk/src/3rdparty/os2/xsystray
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/os2/xsystray/xsystray.c
r256 r265 76 76 77 77 // primitive debug logging to a file 78 #if 178 #if 79 79 static void __LOG_WORKER(const char *fmt, ...) 80 80 { … … 133 133 typedef struct 134 134 { 135 136 137 138 139 140 135 141 PICONDATA pIcons; 136 142 // array of icons currently shown in the system tray 137 // (left to right)138 143 size_t cIcons; 139 144 // number of icons in the pIcons array … … 143 148 } SYSTRAYDATA, *PSYSTRAYDATA; 144 149 145 ULONG QWL_USER_SERVER_DATA = 0; 150 static ULONG QWL_USER_SERVER_DATA = 0; 151 // offset to the PXCENTERWIDGET pointer in the widget data array 152 153 #define TID_CHECKALIVE 1 154 // check alive timer 155 #define TID_CHECKALIVE_TIMEOUT 1000 // ms 156 // how often to check if windows associated with icons are still alive 146 157 147 158 /* ****************************************************************** … … 240 251 /* ****************************************************************** 241 252 * 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 242 277 * PM window class implementation 243 278 *