forked from Mirrors/freeswitch
fix msvc build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6692 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
4110f73cf3
commit
ccffaad03c
|
@ -215,6 +215,10 @@ typedef intptr_t switch_ssize_t;
|
|||
#define SWITCH_INT64_T_FMT "I64d"
|
||||
#define SWITCH_UINT64_T_FMT "I64u"
|
||||
|
||||
#ifndef TIME_T_FMT
|
||||
#define TIME_T_FMT "ld"
|
||||
#endif
|
||||
|
||||
#else
|
||||
#ifndef SWITCH_SSIZE_T_FMT
|
||||
#define SWITCH_SSIZE_T_FMT (sizeof (switch_ssize_t) == sizeof (long) ? "ld" : sizeof (switch_ssize_t) == sizeof (int) ? "d" : "lld")
|
||||
|
|
|
@ -238,12 +238,12 @@ static switch_status_t my_on_hangup(switch_core_session_t *session)
|
|||
switch_channel_set_variable(channel, "end_uepoch", tmp);
|
||||
|
||||
uduration = caller_profile->times->hungup - caller_profile->times->created;
|
||||
duration = tt_hungup - tt_created;
|
||||
mduration = mtt_hungup - mtt_created;
|
||||
duration = (int32_t)(tt_hungup - tt_created);
|
||||
mduration = (int32_t)(mtt_hungup - mtt_created);
|
||||
|
||||
if (caller_profile->times->answered) {
|
||||
billsec = tt_hungup - tt_answered;
|
||||
billmsec = mtt_hungup - mtt_answered;
|
||||
billsec = (int32_t)(tt_hungup - tt_answered);
|
||||
billmsec = (int32_t)(mtt_hungup - mtt_answered);
|
||||
billusec = caller_profile->times->hungup - caller_profile->times->answered;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -104,8 +104,7 @@ static void *SWITCH_THREAD_FUNC read_stream_thread(switch_thread_t *thread, void
|
|||
|
||||
snprintf(path_buf, sizeof(path_buf), "%s%s%s", source->location, SWITCH_PATH_SEPARATOR, fname);
|
||||
if (switch_stristr(".loc", path_buf)) {
|
||||
int fd;
|
||||
ssize_t bytes;
|
||||
int fd, bytes;
|
||||
char *p;
|
||||
|
||||
if ((fd = open(path_buf, O_RDONLY)) < 0) {
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\src\include;..\..\libs\include;..\..\libs\srtp\include;..\..\libs\srtp\crypto\include;..\..\libs\libresample\include;..\..\libs\libteletone\src;..\..\libs\win32\sqlite;..\..\libs\pcre;..\..\libs\stfu"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;FREESWITCHCORE_EXPORTS;PCRE_STATIC"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
|
@ -501,11 +502,11 @@
|
|||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\include\private\switch_core.h"
|
||||
RelativePath="..\..\src\include\switch_core.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\src\include\switch_core.h"
|
||||
RelativePath="..\..\src\include\private\switch_core.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
|
|
Loading…
Reference in New Issue