add event system to msvc project files, make build and fix a warning.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@147 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2005-12-14 01:52:04 +00:00
parent 7125eac731
commit 6b2a156651
2 changed files with 9 additions and 1 deletions

View File

@ -573,7 +573,7 @@ static switch_status exosip_read_frame(switch_core_session *session, switch_fram
samples = frames * tech_pvt->read_codec.implementation->samples_per_frame;
ms = frames * tech_pvt->read_codec.implementation->microseconds_per_frame;
tech_pvt->timestamp_recv += (int32_t)samples;
tech_pvt->read_frame.samples = samples;
tech_pvt->read_frame.samples = (int)samples;
break;
}

View File

@ -214,6 +214,10 @@
RelativePath="..\..\src\switch_core.c"
>
</File>
<File
RelativePath="..\..\src\switch_event.c"
>
</File>
<File
RelativePath="..\..\src\switch_loadable_module.c"
>
@ -260,6 +264,10 @@
RelativePath="..\..\src\include\switch_core.h"
>
</File>
<File
RelativePath="..\..\src\include\switch_event.h"
>
</File>
<File
RelativePath="..\..\src\include\switch_frame.h"
>