|
|
@@ -16,6 +16,12 @@ public:
|
|
|
int libshared_not_exported() const;
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded() const;
|
|
|
+
|
|
|
+ static int const LIBSHARED_EXPORT data_exported;
|
|
|
+
|
|
|
+ static int const data_not_exported;
|
|
|
+
|
|
|
+ static int const LIBSHARED_NO_EXPORT data_excluded;
|
|
|
};
|
|
|
|
|
|
class LibsharedNotExported
|
|
|
@@ -30,6 +36,12 @@ public:
|
|
|
int libshared_not_exported() const;
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded() const;
|
|
|
+
|
|
|
+ static int const LIBSHARED_EXPORT data_exported;
|
|
|
+
|
|
|
+ static int const data_not_exported;
|
|
|
+
|
|
|
+ static int const LIBSHARED_NO_EXPORT data_excluded;
|
|
|
};
|
|
|
|
|
|
class LIBSHARED_NO_EXPORT LibsharedExcluded
|
|
|
@@ -44,6 +56,12 @@ public:
|
|
|
int libshared_not_exported() const;
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded() const;
|
|
|
+
|
|
|
+ static int const LIBSHARED_EXPORT data_exported;
|
|
|
+
|
|
|
+ static int const data_not_exported;
|
|
|
+
|
|
|
+ static int const LIBSHARED_NO_EXPORT data_excluded;
|
|
|
};
|
|
|
|
|
|
LIBSHARED_EXPORT int libshared_exported();
|
|
|
@@ -54,4 +72,12 @@ int libshared_not_exported();
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded();
|
|
|
|
|
|
+extern int const LIBSHARED_EXPORT data_exported;
|
|
|
+
|
|
|
+extern int const data_not_exported;
|
|
|
+
|
|
|
+extern int const LIBSHARED_NO_EXPORT data_excluded;
|
|
|
+
|
|
|
+LIBSHARED_EXPORT void use_int(int);
|
|
|
+
|
|
|
#endif
|