pandafx.cxx 948 B

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