pandafx.cxx 646 B

1234567891011121314151617181920212223242526
  1. /**
  2. * @file pandafx.cxx
  3. * @author drose
  4. * @date 2001-12-11
  5. */
  6. #include "pandafx.h"
  7. #include "config_distort.h"
  8. // By including checkPandaVersion.h, we guarantee that runtime attempts to
  9. // load libpandafx.so.dll will fail if they inadvertently link with the wrong
  10. // version of libdtool.so.dll.
  11. #include "checkPandaVersion.h"
  12. /**
  13. * Initializes the library. This must be called at least once before any of
  14. * the functions or classes in this library can be used. Normally it will be
  15. * called by the static initializers and need not be called explicitly, but
  16. * special cases exist.
  17. */
  18. void
  19. init_libpandafx() {
  20. init_libdistort();
  21. }