# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1068311685 0 # Node ID bc156294dd16c9db1593eccc407f28f2c07eb37f # Parent 6aa93935d2c754378c7cae3b62f4c08c6c9e32d8 Fix compiler complaints on OS/2. diff -r 6aa93935d2c7 -r bc156294dd16 mac/dw.c --- a/mac/dw.c Sat Nov 08 16:49:44 2003 +0000 +++ b/mac/dw.c Sat Nov 08 17:14:45 2003 +0000 @@ -2381,6 +2381,27 @@ } /* + * Inserts an icon into the taskbar. + * Parameters: + * handle: Window handle that will handle taskbar icon messages. + * icon: Icon handle to display in the taskbar. + * bubbletext: Text to show when the mouse is above the icon. + */ +void dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext) +{ +} + +/* + * Deletes an icon from the taskbar. + * Parameters: + * handle: Window handle that was used with dw_taskbar_insert(). + * icon: Icon handle that was used with dw_taskbar_insert(). + */ +void dw_taskbar_delete(HWND handle, unsigned long icon) +{ +} + +/* * Creates a rendering context widget (window) to be packed. * Parameters: * id: An id to be used with dw_window_from_id. diff -r 6aa93935d2c7 -r bc156294dd16 os2/dw.c --- a/os2/dw.c Sat Nov 08 16:49:44 2003 +0000 +++ b/os2/dw.c Sat Nov 08 17:14:45 2003 +0000 @@ -6951,7 +6951,10 @@ */ void dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext) { - /* TODO */ + handle = handle; + icon = icon; + bubbletext = bubbletext; + /* TODO */ } /* @@ -6962,7 +6965,9 @@ */ void dw_taskbar_delete(HWND handle, unsigned long icon) { - /* TODO */ + handle = handle; + icon = icon; + /* TODO */ } /*