00001 // Filename: pandafx.cxx 00002 // Created by: drose (11Dec01) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 00006 #include "pandafx.h" 00007 00008 #include "config_distort.h" 00009 00010 // By including checkPandaVersion.h, we guarantee that runtime 00011 // attempts to load libpandafx.so/.dll will fail if they inadvertently 00012 // link with the wrong version of libdtool.so/.dll. 00013 00014 #include "checkPandaVersion.h" 00015 00016 //////////////////////////////////////////////////////////////////// 00017 // Function: init_libpandafx 00018 // Description: Initializes the library. This must be called at 00019 // least once before any of the functions or classes in 00020 // this library can be used. Normally it will be 00021 // called by the static initializers and need not be 00022 // called explicitly, but special cases exist. 00023 //////////////////////////////////////////////////////////////////// 00024 void 00025 init_libpandafx() { 00026 init_libdistort(); 00027 }