Add DEPRECATED_API and DEPRECATED_TYPE 62/81562/1
authorByungWoo Lee <bw1212.lee@samsung.com>
Wed, 27 Jul 2016 05:13:50 +0000 (14:13 +0900)
committerByungWoo Lee <bw1212.lee@samsung.com>
Wed, 27 Jul 2016 05:13:50 +0000 (14:13 +0900)
Change-Id: I42f7974c50ddbd61a51bd9b8d9b10b85a946049b

include/tizen.h

index acaf64c..84a8cbc 100755 (executable)
 #ifndef EXPORT_API
 #define EXPORT_API __attribute__((__visibility__("default")))
 #endif
+
+#ifndef DEPRECATED_API
+#define DEPRECATED_API __attribute__((__visibility__("default"), deprecated))
+#endif
+
+#ifndef DEPRECATED_TYPE
+#define DEPRECATED_TYPE __attribute__((deprecated))
+#endif
+
 #endif // __TIZEN_H__
\ No newline at end of file