Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README « ode « include « dist « ode « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aaedfcc38fe1716057c3a60fde616935870d9d1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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 exception is the odecpp.h file, which defines a C++ wrapper for
the C interface. remember to keep this in sync!