-
Notifications
You must be signed in to change notification settings - Fork 7
/
hoa.library.cpp
59 lines (54 loc) · 1.38 KB
/
hoa.library.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
// Copyright (c) 2012-2015 Eliott Paris, Julien Colafrancesco & Pierre Guillot, CICM, Universite Paris 8.
// For information on usage and redistribution, and for a DISCLAIMER OF ALL
// WARRANTIES, see the file, "LICENSE.txt," in this distribution.
*/
#include "Max2D/Hoa2D.max.h"
#include "Max3D/Hoa3D.max.h"
#include "MaxCommon/HoaCommon.max.h"
#ifdef HOA_PACKED_LIB
void ext_main(void *r)
{
// HOA COMMON //
c_convolve_main();
c_freeverb_main();
hoa_connect_main();
hoa_dac_main();
hoa_gain_main();
hoa_in_main();
hoa_in_sig_main();
hoa_map_gui_main();
hoa_out_main();
hoa_out_sig_main();
hoa_pi_main();
hoa_pi_sig_main();
hoa_process_main();
hoa_thisprocess_main();
// HOA 2D //
hoa_2d_decoder_main();
hoa_2d_encoder_main();
hoa_2d_exchanger_main();
hoa_2d_map_main();
hoa_2d_meter_main();
hoa_2d_optim_main();
hoa_2d_projector_main();
hoa_2d_recomposer_main();
hoa_2d_recomposer_gui_main();
hoa_2d_rotate_main();
hoa_2d_scope_main();
hoa_2d_space_main();
hoa_2d_vector_main();
hoa_2d_wider_main();
// HOA 3D //
hoa_3d_decoder_main();
hoa_3d_encoder_main();
hoa_3d_exchanger_main();
hoa_3d_map_main();
hoa_3d_meter_main();
hoa_3d_optim_main();
hoa_3d_scope_main();
hoa_3d_vector_main();
hoa_3d_wider_main();
return 0;
}
#endif