diff win/dw.c @ 507:c607eb385e58

Added missing calling conventions. Thanks Bastian for pointing this out.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 22 Jan 2004 18:51:49 +0000
parents f1998a89a4d5
children 078a40ba2e41
line wrap: on
line diff
--- a/win/dw.c	Wed Jan 21 06:31:41 2004 +0000
+++ b/win/dw.c	Thu Jan 22 18:51:49 2004 +0000
@@ -4494,7 +4494,7 @@
  *                 DW pick the appropriate file extension.
  *                 (BMP on OS/2 or Windows, XPM on Unix)
  */
-HWND dw_bitmapbutton_new_from_file(char *text, unsigned long id, char *filename)
+HWND API dw_bitmapbutton_new_from_file(char *text, unsigned long id, char *filename)
 {
 	HWND tmp;
 	BubbleButton *bubble;
@@ -7043,7 +7043,7 @@
  *       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)
+void API dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext)
 {
 	NOTIFYICONDATA tnid;
  
@@ -7067,7 +7067,7 @@
  *       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)
+void API dw_taskbar_delete(HWND handle, unsigned long icon)
 {
 	NOTIFYICONDATA tnid;