changeset 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 6aa93935d2c7
children a9a09514dd56
files mac/dw.c os2/dw.c
diffstat 2 files changed, 28 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- 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 */
 }
 
 /*