|
|
@@ -4,51 +4,51 @@
|
|
|
|
|
|
#include "libshared_and_static_export.h"
|
|
|
|
|
|
-class LIBSHARED_AND_STATIC_EXPORT LibsharedAndStatic {
|
|
|
+class MYPREFIX_LIBSHARED_AND_STATIC_EXPORT LibsharedAndStatic {
|
|
|
public:
|
|
|
int libshared_and_static() const;
|
|
|
|
|
|
int libshared_and_static_exported() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;
|
|
|
|
|
|
int libshared_and_static_not_exported() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
|
|
|
};
|
|
|
|
|
|
class LibsharedAndStaticNotExported {
|
|
|
public:
|
|
|
int libshared_and_static() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_EXPORT libshared_and_static_exported() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_EXPORT libshared_and_static_exported() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;
|
|
|
|
|
|
int libshared_and_static_not_exported() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
|
|
|
};
|
|
|
|
|
|
-class LIBSHARED_AND_STATIC_NO_EXPORT LibsharedAndStaticExcluded {
|
|
|
+class MYPREFIX_LIBSHARED_AND_STATIC_NO_EXPORT LibsharedAndStaticExcluded {
|
|
|
public:
|
|
|
int libshared_and_static() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_EXPORT libshared_and_static_exported() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_EXPORT libshared_and_static_exported() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;
|
|
|
|
|
|
int libshared_and_static_not_exported() const;
|
|
|
|
|
|
- int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
|
|
|
+ int MYPREFIX_LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
|
|
|
};
|
|
|
|
|
|
-LIBSHARED_AND_STATIC_EXPORT int libshared_and_static_exported();
|
|
|
+MYPREFIX_LIBSHARED_AND_STATIC_EXPORT int libshared_and_static_exported();
|
|
|
|
|
|
-LIBSHARED_AND_STATIC_DEPRECATED_EXPORT int libshared_and_static_deprecated();
|
|
|
+MYPREFIX_LIBSHARED_AND_STATIC_DEPRECATED_EXPORT int libshared_and_static_deprecated();
|
|
|
|
|
|
int libshared_and_static_not_exported();
|
|
|
|
|
|
-int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded();
|
|
|
+int MYPREFIX_LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded();
|
|
|
|
|
|
#endif
|