use '#pragma message' instead of '#warning' when vc++ is used
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 12 Dec 2010 22:49:01 +0000 (22:49 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 12 Dec 2010 22:49:01 +0000 (22:49 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@55527 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_win32/Ecore_Win32.h

index 63e2d87..9141335 100644 (file)
@@ -7,8 +7,13 @@
  */
 
 #ifndef ECORE_WIN32_WIP_POZEFLKSD
-# warning "You are using a work in progress API. This API is not stable"
-# warning "and is subject to change. You use this at your own risk."
+# ifdef _MSC_VER
+#  pragma message ("You are using a work in progress API. This API is not stable")
+#  pragma message ("and is subject to change. You use this at your own risk.")
+# else
+#  warning "You are using a work in progress API. This API is not stable"
+#  warning "and is subject to change. You use this at your own risk."
+# endif
 #endif
 
 #include <Eina.h>