[trunk] add the prefix opj_ to deprecated everywhere

This commit is contained in:
Mickael Savinaud 2013-02-18 13:19:52 +00:00
parent 42bd417acf
commit efaefa21fc
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
/* deprecated attribute */
#ifdef __GNUC__
#define DEPRECATED(func) func __attribute__ ((deprecated))
#define OPJ_DEPRECATED(func) func __attribute__ ((deprecated))
#elif defined(_MSC_VER)
#define OPJ_DEPRECATED(func) __declspec(deprecated) func
#else