This commit is contained in:
huxi
2025-12-03 11:12:34 +08:00
parent c23ae4f24c
commit bc195654bf
8163 changed files with 3799544 additions and 92 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef __RING_PLAYER_H
#define __RING_PLAYER_H
int play_ring_file(const char *file_name);
int play_ring_file_alone(const char *file_name);
int play_ring_file_with_callback(const char *file_name, void *priv, tone_player_cb_t callback);
int play_ring_file_alone_with_callback(const char *file_name, void *priv, tone_player_cb_t callback);
bool ring_player_runing();
void ring_player_stop();
#endif