Ticket #61: added Windows Mobile/WinCE eVC project for SRTP and libsrtp

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1736 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2008-01-24 10:23:43 +00:00
parent d817965a91
commit 2c423755de
5 changed files with 22032 additions and 21 deletions

File diff suppressed because it is too large Load Diff

View File

@ -75,6 +75,18 @@ Package=<4>
###############################################################################
Project: "libsrtp"="..\..\..\third_party\build\srtp\libsrtp.vcp" - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "pjlib_util_wince"="..\..\..\pjlib-util\build\wince-evc4\pjlib_util_wince.vcp" - Package Owner=<4>
Package=<5>
@ -257,6 +269,9 @@ Package=<4>
Begin Project Dependency
Project_Dep_Name libmilenage
End Project Dependency
Begin Project Dependency
Project_Dep_Name libsrtp
End Project Dependency
}}}
###############################################################################

20977
third_party/build/srtp/libsrtp.vcp vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -137,6 +137,20 @@
# pragma warning(disable:4244) // conversion from int64 to int
#endif
/* clock() */
#if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE!=0
/* clock() causes unresolved symbol on linking */
# define _CLOCK_T_DEFINED
# define CLOCKS_PER_SEC 1000
# define clock_t unsigned
#include <windows.h>
static clock_t clock(void)
{
return GetTickCount();
}
#endif
/* Path to random device */
/* #define DEV_URANDOM "/dev/urandom" */

View File

@ -176,6 +176,9 @@ aes_128_cbc_hmac_sha1_96_inv(void *key,
#define ENC 1
// eVC4 declares DEBUG
#undef DEBUG
#define DEBUG 0