| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #include "libstatic.h"
- int Libstatic::libstatic() const
- {
- return 0;
- }
- int Libstatic::libstatic_exported() const
- {
- return 0;
- }
- int Libstatic::libstatic_deprecated() const
- {
- return 0;
- }
- int Libstatic::libstatic_not_exported() const
- {
- return 0;
- }
- int Libstatic::libstatic_excluded() const
- {
- return 0;
- }
- int LibstaticNotExported::libstatic() const
- {
- return 0;
- }
- int LibstaticNotExported::libstatic_exported() const
- {
- return 0;
- }
- int LibstaticNotExported::libstatic_deprecated() const
- {
- return 0;
- }
- int LibstaticNotExported::libstatic_not_exported() const
- {
- return 0;
- }
- int LibstaticNotExported::libstatic_excluded() const
- {
- return 0;
- }
- int LibstaticExcluded::libstatic() const
- {
- return 0;
- }
- int LibstaticExcluded::libstatic_exported() const
- {
- return 0;
- }
- int LibstaticExcluded::libstatic_deprecated() const
- {
- return 0;
- }
- int LibstaticExcluded::libstatic_not_exported() const
- {
- return 0;
- }
- int LibstaticExcluded::libstatic_excluded() const
- {
- return 0;
- }
- int libstatic_exported()
- {
- return 0;
- }
- int libstatic_deprecated()
- {
- return 0;
- }
- int libstatic_not_exported()
- {
- return 0;
- }
- int libstatic_excluded()
- {
- return 0;
- }
|