comparison mac/dw.c @ 489:bc156294dd16

Fix compiler complaints on OS/2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 08 Nov 2003 17:14:45 +0000
parents d9a5f98a1127
children 078a40ba2e41
comparison
equal deleted inserted replaced
488:6aa93935d2c7 489:bc156294dd16
2379 void API dw_container_optimize(HWND handle) 2379 void API dw_container_optimize(HWND handle)
2380 { 2380 {
2381 } 2381 }
2382 2382
2383 /* 2383 /*
2384 * Inserts an icon into the taskbar.
2385 * Parameters:
2386 * handle: Window handle that will handle taskbar icon messages.
2387 * icon: Icon handle to display in the taskbar.
2388 * bubbletext: Text to show when the mouse is above the icon.
2389 */
2390 void dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext)
2391 {
2392 }
2393
2394 /*
2395 * Deletes an icon from the taskbar.
2396 * Parameters:
2397 * handle: Window handle that was used with dw_taskbar_insert().
2398 * icon: Icon handle that was used with dw_taskbar_insert().
2399 */
2400 void dw_taskbar_delete(HWND handle, unsigned long icon)
2401 {
2402 }
2403
2404 /*
2384 * Creates a rendering context widget (window) to be packed. 2405 * Creates a rendering context widget (window) to be packed.
2385 * Parameters: 2406 * Parameters:
2386 * id: An id to be used with dw_window_from_id. 2407 * id: An id to be used with dw_window_from_id.
2387 * Returns: 2408 * Returns:
2388 * A handle to the widget or NULL on failure. 2409 * A handle to the widget or NULL on failure.