pandaode.cxx 641 B

12345678910111213141516171819202122232425
  1. /**
  2. * @file pandaode.cxx
  3. * @author drose
  4. * @date 2000-05-16
  5. */
  6. #include "pandaode.h"
  7. #include "config_ode.h"
  8. // By including checkPandaVersion.h, we guarantee that runtime attempts to
  9. // load libpandaode.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_libpandaode() {
  20. init_libode();
  21. }