summaryrefslogtreecommitdiffstats
path: root/action_vbox.cpp
diff options
context:
space:
mode:
authorSuper User2008-04-25 09:06:20 +0200
committerSuper User2008-04-25 09:06:20 +0200
commita130bdd9f635fc6f4a69de9592080afe3f61aab1 (patch)
tree0ca97f442b4b7d6d5250cb1f4d288579a6b6a11d /action_vbox.cpp
parentwork (diff)
downloadlcr-a130bdd9f635fc6f4a69de9592080afe3f61aab1.tar.gz
lcr-a130bdd9f635fc6f4a69de9592080afe3f61aab1.tar.xz
lcr-a130bdd9f635fc6f4a69de9592080afe3f61aab1.zip
struct message -> struct lcr_msg
Diffstat (limited to 'action_vbox.cpp')
-rw-r--r--action_vbox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/action_vbox.cpp b/action_vbox.cpp
index 49a91b5..e069299 100644
--- a/action_vbox.cpp
+++ b/action_vbox.cpp
@@ -80,7 +80,7 @@ void EndpointAppPBX::action_init_vbox_play(void)
{
int language = e_ext.vbox_language;
struct route_param *rparam;
- struct message *message;
+ struct lcr_msg *message;
struct port_list *portlist = ea_endpoint->ep_portlist;
/* get extension */
@@ -668,7 +668,7 @@ void EndpointAppPBX::vbox_handler(void)
if (e_vbox_display_refresh && e_ext.vbox_display!=VBOX_DISPLAY_OFF)
{
char counter[32];
- struct message *message;
+ struct lcr_msg *message;
SPRINT(counter, "%02d:%02d", e_vbox_counter/60, e_vbox_counter%60);
if (e_vbox_counter_max)
@@ -899,7 +899,7 @@ void EndpointAppPBX::vbox_message_eof(void)
*/
void EndpointAppPBX::set_tone_vbox(char *tone)
{
- struct message *message;
+ struct lcr_msg *message;
if (tone == NULL)
tone = "";
@@ -927,7 +927,7 @@ void EndpointAppPBX::set_tone_vbox(char *tone)
void EndpointAppPBX::set_play_vbox(char *file, int offset)
{
char filename[256];
- struct message *message;
+ struct lcr_msg *message;
SPRINT(filename, "%s/%s/%s/vbox/%s", INSTALL_DATA, options.extensions_dir, e_vbox, file);
@@ -958,7 +958,7 @@ void EndpointAppPBX::set_play_vbox(char *file, int offset)
*/
void EndpointAppPBX::set_play_speed(int speed)
{
- struct message *message;
+ struct lcr_msg *message;
if (!ea_endpoint->ep_portlist)
{