horror/thirdparty/ode-0.16.5/include/ode
2024-06-10 12:48:14 +03:00
..
collision_space.h first commit 2024-06-10 12:48:14 +03:00
collision_trimesh.h first commit 2024-06-10 12:48:14 +03:00
collision.h first commit 2024-06-10 12:48:14 +03:00
common.h first commit 2024-06-10 12:48:14 +03:00
compatibility.h first commit 2024-06-10 12:48:14 +03:00
contact.h first commit 2024-06-10 12:48:14 +03:00
cooperative.h first commit 2024-06-10 12:48:14 +03:00
error.h first commit 2024-06-10 12:48:14 +03:00
export-dif.h first commit 2024-06-10 12:48:14 +03:00
Makefile.am first commit 2024-06-10 12:48:14 +03:00
Makefile.in first commit 2024-06-10 12:48:14 +03:00
mass.h first commit 2024-06-10 12:48:14 +03:00
matrix_coop.h first commit 2024-06-10 12:48:14 +03:00
matrix.h first commit 2024-06-10 12:48:14 +03:00
memory.h first commit 2024-06-10 12:48:14 +03:00
misc.h first commit 2024-06-10 12:48:14 +03:00
objects.h first commit 2024-06-10 12:48:14 +03:00
ode.h first commit 2024-06-10 12:48:14 +03:00
odeconfig.h first commit 2024-06-10 12:48:14 +03:00
odecpp_collision.h first commit 2024-06-10 12:48:14 +03:00
odecpp.h first commit 2024-06-10 12:48:14 +03:00
odeinit.h first commit 2024-06-10 12:48:14 +03:00
odemath_legacy.h first commit 2024-06-10 12:48:14 +03:00
odemath.h first commit 2024-06-10 12:48:14 +03:00
precision.h first commit 2024-06-10 12:48:14 +03:00
precision.h.in first commit 2024-06-10 12:48:14 +03:00
README first commit 2024-06-10 12:48:14 +03:00
rotation.h first commit 2024-06-10 12:48:14 +03:00
threading_impl.h first commit 2024-06-10 12:48:14 +03:00
threading.h first commit 2024-06-10 12:48:14 +03:00
timer.h first commit 2024-06-10 12:48:14 +03:00
version.h first commit 2024-06-10 12:48:14 +03:00
version.h.in first commit 2024-06-10 12:48:14 +03:00

this is the public C interface to the ODE library.

all these files should be includable from C, i.e. they should not use any
C++ features. everything should be protected with

	#ifdef __cplusplus
	extern "C" {
	#endif

	...

	#ifdef __cplusplus
	}
	#endif

the only exceptions are the odecpp.h and odecpp_collisioh.h files, which define a C++ wrapper for
the C interface. remember to keep this in sync!