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