]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xpm/image.c
Use system default font for all platforms
[wxWidgets.git] / src / xpm / image.c
index 0753622186d0f25afe10ffcb4e8677a2e7e5a284..9090c3adcff45f7aa4202a1c1259f3c423219f1c 100644 (file)
 /*
  * Init returned data to free safely later on
  */
+#ifdef __OS2__
+/* Visual Age cannot deal with old, non-ansi, code */
+void
+xpmInitXpmImage(XpmImage* image)
+#else
 void
 xpmInitXpmImage(image)
     XpmImage *image;
+#endif
 {
     image->ncolors = 0;
     image->colorTable = NULL;
@@ -49,9 +55,15 @@ xpmInitXpmImage(image)
 /*
  * Free the XpmImage data which have been allocated
  */
+#ifdef __OS2__
+/* Visual Age cannot deal with old, non-ansi, code */
+void
+XpmFreeXpmImage(XpmImage* image)
+#else
 void
 XpmFreeXpmImage(image)
     XpmImage *image;
+#endif
 {
     if (image->colorTable)
        xpmFreeColorTable(image->colorTable, image->ncolors);