libshared.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. #include "libshared.h"
  2. int Libshared::libshared() const
  3. {
  4. return 0;
  5. }
  6. int Libshared::libshared_exported() const
  7. {
  8. return 0;
  9. }
  10. int Libshared::libshared_deprecated() const
  11. {
  12. return 0;
  13. }
  14. int Libshared::libshared_not_exported() const
  15. {
  16. return 0;
  17. }
  18. int Libshared::libshared_excluded() const
  19. {
  20. return 0;
  21. }
  22. int const Libshared::data_exported = 1;
  23. int const Libshared::data_not_exported = 1;
  24. int const Libshared::data_excluded = 1;
  25. int LibsharedNotExported::libshared() const
  26. {
  27. return 0;
  28. }
  29. int LibsharedNotExported::libshared_exported() const
  30. {
  31. return 0;
  32. }
  33. int LibsharedNotExported::libshared_deprecated() const
  34. {
  35. return 0;
  36. }
  37. int LibsharedNotExported::libshared_not_exported() const
  38. {
  39. return 0;
  40. }
  41. int LibsharedNotExported::libshared_excluded() const
  42. {
  43. return 0;
  44. }
  45. int const LibsharedNotExported::data_exported = 1;
  46. int const LibsharedNotExported::data_not_exported = 1;
  47. int const LibsharedNotExported::data_excluded = 1;
  48. int LibsharedExcluded::libshared() const
  49. {
  50. return 0;
  51. }
  52. int LibsharedExcluded::libshared_exported() const
  53. {
  54. return 0;
  55. }
  56. int LibsharedExcluded::libshared_deprecated() const
  57. {
  58. return 0;
  59. }
  60. int LibsharedExcluded::libshared_not_exported() const
  61. {
  62. return 0;
  63. }
  64. int LibsharedExcluded::libshared_excluded() const
  65. {
  66. return 0;
  67. }
  68. int const LibsharedExcluded::data_exported = 1;
  69. int const LibsharedExcluded::data_not_exported = 1;
  70. int const LibsharedExcluded::data_excluded = 1;
  71. int libshared()
  72. {
  73. return 0;
  74. }
  75. int libshared_exported()
  76. {
  77. return 0;
  78. }
  79. int libshared_deprecated()
  80. {
  81. return 0;
  82. }
  83. int libshared_not_exported()
  84. {
  85. return 0;
  86. }
  87. int libshared_excluded()
  88. {
  89. return 0;
  90. }
  91. int const data_exported = 1;
  92. int const data_not_exported = 1;
  93. int const data_excluded = 1;
  94. void use_int(int)
  95. {
  96. }