Merge branch 'develop' of aubio.org:/git/aubio/aubio into wavetable
[aubio.git] / src / aubio.h
index a8596ef..5f8b518 100644 (file)
   \endcode
 
   Several examples of C programs are available in the \p examples/ and \p tests/src
-  directory of the source tree.
+  directories of the source tree.
 
   \subsection unstable_api Unstable API
 
 
 /** @file aubio.h Global aubio include file.
 
-  Programmers just need to include this file as:
+  You will want to include this file as:
 
   @code
     #include <aubio/aubio.h>
   @endcode
 
+  To access headers with unstable prototypes, use:
+
+  @code
+    #define AUBIO_UNSTABLE 1
+    #include <aubio/aubio.h>
+  @endcode
+
  */
 
 #ifdef __cplusplus
@@ -177,6 +184,9 @@ extern "C"
 #include "tempo/tempo.h"
 #include "io/source.h"
 #include "io/sink.h"
+#include "io/audio_unit.h"
+#include "synth/sampler.h"
+#include "synth/wavetable.h"
 
 #if AUBIO_UNSTABLE
 #include "mathutils.h"