@@ -3,21 +3,21 @@ include "h_ga_types.pxi"
3
3
include " h_gau_types.pxi"
4
4
5
5
cdef extern from " gorilla/gau.h" :
6
- cdef gau_Manager * manager_create " gau_manager_create" ()
6
+ cdef Manager * manager_create " gau_manager_create" ()
7
7
8
- cdef gau_Manager * manager_create_custom " gau_manager_create_custom" (
8
+ cdef Manager * manager_create_custom " gau_manager_create_custom" (
9
9
int32 in_devType,
10
10
int32 in_threadPolicy,
11
11
int32 in_numBuffers,
12
12
int32 in_bufferSamples
13
13
)
14
14
15
- cdef void manager_update " gau_manager_update" (gau_Manager * in_mgr)
16
- cdef ga_Mixer* manager_mixer " gau_manager_mixer" (gau_Manager * in_mgr)
17
- cdef ga_StreamManager* manager_streamManager " gau_manager_streamManager" (gau_Manager * in_mgr)
18
- cdef ga_Device* manager_device " gau_manager_device" (gau_Manager * in_mgr)
15
+ cdef void manager_update " gau_manager_update" (Manager * in_mgr)
16
+ cdef ga_Mixer* manager_mixer " gau_manager_mixer" (Manager * in_mgr)
17
+ cdef ga_StreamManager* manager_streamManager " gau_manager_streamManager" (Manager * in_mgr)
18
+ cdef ga_Device* manager_device " gau_manager_device" (Manager * in_mgr)
19
19
20
- cdef void manager_destroy " gau_manager_destroy" (gau_Manager * in_mgr)
20
+ cdef void manager_destroy " gau_manager_destroy" (Manager * in_mgr)
21
21
cdef ga_DataSource* data_source_create_file " gau_data_source_create_file" (const char * in_filename)
22
22
cdef ga_DataSource* data_source_create_file_arc " gau_data_source_create_file_arc" (
23
23
const char * in_filename,
@@ -47,20 +47,20 @@ cdef extern from "gorilla/gau.h":
47
47
ga_Sound* in_sound
48
48
)
49
49
50
- cdef gau_SampleSourceLoop * sample_source_create_loop " gau_sample_source_create_loop" (
50
+ cdef SampleSourceLoop * sample_source_create_loop " gau_sample_source_create_loop" (
51
51
ga_SampleSource* in_sampleSrc
52
52
)
53
53
54
54
cdef void sample_source_loop_set " gau_sample_source_loop_set" (
55
- gau_SampleSourceLoop * in_sampleSrc,
55
+ SampleSourceLoop * in_sampleSrc,
56
56
int32 in_triggerSample,
57
57
int32 in_targetSample
58
58
)
59
59
60
- cdef void sample_source_loop_clear " gau_sample_source_loop_clear" (gau_SampleSourceLoop * in_sampleSrc)
60
+ cdef void sample_source_loop_clear " gau_sample_source_loop_clear" (SampleSourceLoop * in_sampleSrc)
61
61
62
62
cdef int32 sample_source_loop_count " gau_sample_source_loop_count" (
63
- gau_SampleSourceLoop * in_sampleSrc
63
+ SampleSourceLoop * in_sampleSrc
64
64
)
65
65
66
66
cdef void on_finish_destroy " gau_on_finish_destroy" (
@@ -77,15 +77,15 @@ cdef extern from "gorilla/gau.h":
77
77
cdef ga_Handle* create_handle_memory " gau_create_handle_memory" (
78
78
ga_Mixer* in_mixer, ga_Memory* in_memory, const char * in_format,
79
79
ga_FinishCallback in_callback, void * in_context,
80
- gau_SampleSourceLoop ** out_loopSrc
80
+ SampleSourceLoop ** out_loopSrc
81
81
)
82
82
83
83
cdef ga_Handle* create_handle_sound " gau_create_handle_sound" (
84
84
ga_Mixer* in_mixer,
85
85
ga_Sound* in_sound,
86
86
ga_FinishCallback in_callback,
87
87
void * in_context,
88
- gau_SampleSourceLoop ** out_loopSrc
88
+ SampleSourceLoop ** out_loopSrc
89
89
)
90
90
91
91
cdef ga_Handle* create_handle_buffered_data " gau_create_handle_buffered_data" (
@@ -95,7 +95,7 @@ cdef extern from "gorilla/gau.h":
95
95
const char * in_format,
96
96
ga_FinishCallback in_callback,
97
97
void * in_context,
98
- gau_SampleSourceLoop ** out_loopSrc
98
+ SampleSourceLoop ** out_loopSrc
99
99
)
100
100
101
101
cdef ga_Handle* create_handle_buffered_file " gau_create_handle_buffered_file" (
@@ -105,5 +105,5 @@ cdef extern from "gorilla/gau.h":
105
105
const char * in_format,
106
106
ga_FinishCallback in_callback,
107
107
void * in_context,
108
- gau_SampleSourceLoop ** out_loopSrc
108
+ SampleSourceLoop ** out_loopSrc
109
109
)
0 commit comments