Changeset 839:29bbbbef1d7e in mediastreamer2
- Timestamp:
- Dec 9, 2009 6:05:39 PM (3 years ago)
- Branch:
- default
- Location:
- linphone
- Files:
-
- 1 added
- 1 deleted
- 14 edited
-
build/wince/liblinphone.ncb (deleted)
-
build/wince/liblinphone.sln (modified) (1 diff)
-
build/wince/liblinphone.suo (modified) (previous)
-
build/wince/liblinphone.vcproj (modified) (2 diffs)
-
build/wince/linphonec/linphonec.vcproj (modified) (3 diffs)
-
console/linphonec.c (modified) (5 diffs)
-
coreapi/misc.c (modified) (2 diffs)
-
mediastreamer2/build/wince/alldescs.h (modified) (2 diffs)
-
mediastreamer2/build/wince/echo/echo.vcproj (added)
-
mediastreamer2/build/wince/mediastreamer2.sln (modified) (2 diffs)
-
mediastreamer2/build/wince/mediastreamer2.vcproj (modified) (5 diffs)
-
mediastreamer2/src/audiostream.c (modified) (1 diff)
-
mediastreamer2/src/msfileplayer_win.c (modified) (1 diff)
-
mediastreamer2/tests/echo.c (modified) (3 diffs)
-
oRTP/build/wince/oRTP.vcproj (modified) (2 diffs)
-
oRTP/src/ortp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
linphone/build/wince/liblinphone.sln
r827 r839 5 5 EndProject 6 6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "linphonec", "linphonec\linphonec.vcproj", "{92574924-BF59-4DAA-994B-9978B80E5797}" 7 ProjectSection(ProjectDependencies) = postProject8 {290078F0-3B63-47BF-A2A9-E1AF5411F5E7} = {290078F0-3B63-47BF-A2A9-E1AF5411F5E7}9 EndProjectSection10 7 EndProject 11 8 Global -
linphone/build/wince/liblinphone.vcproj
r827 r839 179 179 IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 180 180 ConfigurationType="4" 181 CharacterSet="1" 181 182 > 182 183 <Tool … … 200 201 ExecutionBucket="7" 201 202 AdditionalOptions="
" 202 Optimization=" 0"203 Optimization="2" 203 204 AdditionalIncludeDirectories="..\..\oRTP\include;..\..\mediastreamer2\include;"..\..\..\..\linphone-builder\speex\include";"..\..\..\..\linphone-builder\eXosip\include";"..\..\..\..\linphone-builder\osip\include"" 204 PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);LIBLINPHONE_EXPORTS;OSIP_MT;ENABLE_TRACE;LOG_DOMAIN=\"LinphoneCore\";IN_LINPHONE;LINPHONE_PLUGINS_DIR=\"\";LINPHONE_VERSION=\"3.1.2\";_UNICODE;UNICODE "205 PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);LIBLINPHONE_EXPORTS;OSIP_MT;ENABLE_TRACE;LOG_DOMAIN=\"LinphoneCore\";IN_LINPHONE;LINPHONE_PLUGINS_DIR=\"\";LINPHONE_VERSION=\"3.1.2\";_UNICODE;UNICODE;PACKAGE_SOUND_DIR=\"\\Program Files\\Linphone\"" 205 206 MinimalRebuild="true" 206 207 RuntimeLibrary="3" -
linphone/build/wince/linphonec/linphonec.vcproj
r828 r839 22 22 IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" 23 23 ConfigurationType="1" 24 UseOfMFC="0" 24 25 CharacterSet="1" 25 26 > … … 44 45 Optimization="0" 45 46 AdditionalIncludeDirectories=""..\..\..\..\..\linphone-builder\osip\include";..\..\..\mediastreamer2\include;..\..\..\oRTP\include;..\..\..\coreapi" 46 PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_); _UNICODE;UNICODE;IN_LINPHONE"47 PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;$(PLATFORMDEFINES);WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);IN_LINPHONE;PACKAGE_DIR=\"\\Program Files\\Linphone\"" 47 48 MinimalRebuild="true" 48 RuntimeLibrary=" 1"49 RuntimeLibrary="3" 49 50 UsePrecompiledHeader="0" 50 51 WarningLevel="3" … … 102 103 RemoteDirectory="%CSIDL_PROGRAM_FILES%\linphone" 103 104 RegisterOutput="0" 104 AdditionalFiles=" ..\..\..\oRTP\build\wince\$(PlatformName)\$(ConfigurationName)\oRTP.dll;..\..\..\mediastreamer2\build\wince\$(PlatformName)\$(ConfigurationName)\mediastreamer2.dll"105 AdditionalFiles="" 105 106 /> 106 107 <DebuggerTool -
linphone/console/linphonec.c
r827 r839 62 62 #define strdup _strdup 63 63 #endif /*strdup*/ 64 /*65 #if !defined(access)66 #define access _access67 #endif*/ /*access*/68 64 69 65 #endif /*_WIN32_WCE*/ … … 76 72 #else 77 73 #define _(something) (something) 74 #endif 75 76 #ifndef PACKAGE_DIR 77 #define PACKAGE_DIR "" 78 78 #endif 79 79 … … 569 569 * - FILE *mylogfile 570 570 */ 571 #if defined (_MSC_VER) 572 int _tmain(int argc, _TCHAR* argv[]) { 573 trace_level=1; 571 #if defined (_WIN32_WCE) 572 573 char **convert_args_to_ascii(int argc, _TCHAR **wargv){ 574 int i; 575 char **result=malloc(argc*sizeof(char*)); 576 char argtmp[128]; 577 for(i=0;i<argc;++i){ 578 wcstombs(argtmp,wargv[i],sizeof(argtmp)); 579 result[i]=strdup(argtmp); 580 } 581 return result; 582 } 583 584 int _tmain(int argc, _TCHAR* wargv[]) { 585 char **argv=convert_args_to_ascii(argc,wargv); 586 trace_level=6; 574 587 linphonec_vtable.show =(ShowInterfaceCb) stub; 575 588 linphonec_vtable.inv_recv = linphonec_call_received; … … 597 610 598 611 599 600 601 612 if (! linphonec_init(argc, argv) ) exit(EXIT_FAILURE); 602 613 … … 621 632 */ 622 633 mylogfile = NULL; 623 634 635 636 #ifndef _WIN32 624 637 snprintf(configfile_name, PATH_MAX, "%s/.linphonerc", 625 #if !defined(_WIN32_WCE)626 638 getenv("HOME")); 639 #elif defined(_WIN32_WCE) 640 strncpy(configfile_name,PACKAGE_DIR "\\linphonerc",PATH_MAX); 641 mylogfile=fopen(PACKAGE_DIR "\\" "linphonec.log","w"); 642 printf("Logs are redirected in" PACKAGE_DIR "\\linphonec.log"); 627 643 #else 628 ".");629 #endif /*_WIN32_WCE*/ 630 644 snprintf(configfile_name, PATH_MAX, "%s/Linphone/linphonerc", 645 getenv("APPDATA")); 646 #endif 631 647 /* Handle configuration filename changes */ 632 648 switch (handle_configfile_migration()) -
linphone/coreapi/misc.c
r826 r839 776 776 struct addrinfo *res=NULL; 777 777 struct sockaddr_storage addr; 778 struct sockaddr *p_addr=(struct sockaddr*)&addr; 778 779 ortp_socket_t sock; 779 780 socklen_t s; … … 814 815 return -1; 815 816 } 817 if (p_addr->sa_family==AF_INET){ 818 struct sockaddr_in *p_sin=(struct sockaddr_in*)p_addr; 819 if (p_sin->sin_addr.s_addr==0){ 820 close_socket(sock); 821 return -1; 822 } 823 } 816 824 err=getnameinfo((struct sockaddr *)&addr,s,result,LINPHONE_IPADDR_SIZE,NULL,0,NI_NUMERICHOST); 817 825 if (err!=0){ -
linphone/mediastreamer2/build/wince/alldescs.h
r0 r839 29 29 //extern MSFilterDesc ms_h263_dec_desc; 30 30 extern MSFilterDesc ms_join_desc; 31 extern MSFilterDesc ms_equalizer_desc; 32 extern MSFilterDesc ms_volume_desc; 33 31 34 MSFilterDesc * ms_filter_descs[]={ 32 35 &ms_alaw_dec_desc, … … 58 61 //&ms_h263_dec_desc, 59 62 &ms_join_desc, 63 &ms_equalizer_desc, 64 &ms_volume_desc, 60 65 NULL 61 66 }; -
linphone/mediastreamer2/build/wince/mediastreamer2.sln
r824 r839 3 3 # Visual Studio 2008 4 4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mediastreamer2", "mediastreamer2.vcproj", "{177F5AE2-A40C-4412-8F26-7F85FA32464E}" 5 EndProject 6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "echo", "echo\echo.vcproj", "{B616AC95-748E-4CD5-89AC-772DC3C069D9}" 5 7 EndProject 6 8 Global … … 40 42 {177F5AE2-A40C-4412-8F26-7F85FA32464E}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 41 43 {177F5AE2-A40C-4412-8F26-7F85FA32464E}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 44 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 45 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 46 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 47 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 48 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 49 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 50 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 51 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 52 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 53 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Professional SDK (ARMV4I) 54 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 6 Professional SDK (ARMV4I) 55 {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 42 56 EndGlobalSection 43 57 GlobalSection(SolutionProperties) = preSolution -
linphone/mediastreamer2/build/wince/mediastreamer2.vcproj
r826 r839 328 328 FavorSizeOrSpeed="1" 329 329 AdditionalIncludeDirectories=".;"..\..\..\..\..\linphone-builder\speex\include";..\..;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 330 PreprocessorDefinitions="__VIDEO_DISABLED__; AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL"330 PreprocessorDefinitions="__VIDEO_DISABLED__;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_)" 331 331 RuntimeLibrary="3" 332 332 TreatWChar_tAsBuiltInType="false" … … 754 754 </File> 755 755 <File 756 RelativePath="..\..\src\dsptools.c" 757 > 758 </File> 759 <File 756 760 RelativePath="..\..\src\dtmfgen.c" 757 761 > … … 762 766 </File> 763 767 <File 768 RelativePath="..\..\src\equalizer.c" 769 > 770 </File> 771 <File 764 772 RelativePath="..\..\src\ice.c" 765 773 > 766 774 </File> 767 775 <File 776 RelativePath="..\..\src\kiss_fft.c" 777 > 778 </File> 779 <File 780 RelativePath="..\..\src\kiss_fftr.c" 781 > 782 </File> 783 <File 768 784 RelativePath="..\..\src\mscommon.c" 769 785 > … … 810 826 </File> 811 827 <File 828 RelativePath="..\..\src\msvolume.c" 829 > 830 </File> 831 <File 812 832 RelativePath="..\..\src\mswebcam.c" 813 833 > … … 834 854 </File> 835 855 <File 836 RelativePath="..\..\src\winsnd .c"856 RelativePath="..\..\src\winsnd3.c" 837 857 > 838 858 </File> -
linphone/mediastreamer2/src/audiostream.c
r826 r839 561 561 ms_filter_destroy(stream->sndwrite); 562 562 ms_free(stream); 563 #ifdef _WIN32_WCE 564 ms_warning("Sleeping a bit after closing the audio device..."); 565 ms_sleep(1); 566 #endif 563 567 } 564 568 -
linphone/mediastreamer2/src/msfileplayer_win.c
r179 r839 128 128 PlayerData *d=(PlayerData*)f->data; 129 129 HANDLE fd; 130 const char *file=(const char*)arg; 131 #if defined(_WIN32_WCE) 132 fd = CreateFile((LPCWSTR)file, GENERIC_READ, FILE_SHARE_READ, NULL, 133 OPEN_EXISTING, 0, NULL); 130 const char *afile=(const char*)arg; 131 LPCTSTR file; 132 #ifdef _UNICODE 133 wchar_t wfile[MAX_PATH]; 134 mbstowcs(wfile,afile,MAX_PATH); 135 file=wfile; 134 136 #else 135 fd = CreateFile(file, GENERIC_READ, FILE_SHARE_READ, NULL, 136 OPEN_EXISTING, 0, NULL); 137 file=afile; 137 138 #endif 139 140 fd = CreateFile(file, GENERIC_READ, FILE_SHARE_READ, NULL, 141 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); 142 138 143 if (fd==INVALID_HANDLE_VALUE){ 139 ms_warning("Failed to open %s ",file);144 ms_warning("Failed to open %s: error %i",afile,GetLastError()); 140 145 return -1; 141 146 } 142 147 d->state=STOPPED; 143 148 d->fd=fd; 144 if (strstr( file,".wav")!=NULL) read_wav_header(d);149 if (strstr(afile,".wav")!=NULL) read_wav_header(d); 145 150 return 0; 146 151 } -
linphone/mediastreamer2/tests/echo.c
r493 r839 23 23 #include "mediastreamer2/msticker.h" 24 24 25 #ifndef _WIN32_WCE 25 26 #include <signal.h> 27 #elif defined(_MSC_VER) 28 #define main _tmain 29 #endif 26 30 27 31 static int run=1; … … 38 42 char *card_id=NULL; 39 43 int rate = 16000; 44 40 45 ortp_init(); 41 46 ortp_set_log_level_mask(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL); 42 47 ms_init(); 43 48 49 #ifndef _WIN32_WCE 44 50 signal(SIGINT,stop); 51 #endif 45 52 46 53 if (argc>1) … … 78 85 ms_filter_link(f1,0,f2,0); 79 86 ms_ticker_attach(ticker,f1); 87 #ifndef _WIN32_WCE 80 88 while(run) 81 89 ms_sleep(1); 90 #else 91 ms_sleep(5); 92 #endif 82 93 ms_ticker_detach(ticker,f1); 83 94 ms_ticker_destroy(ticker); -
linphone/oRTP/build/wince/oRTP.vcproj
r824 r839 290 290 </Configuration> 291 291 <Configuration 292 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 293 OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 294 IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 295 ConfigurationType="2" 296 UseOfMFC="0" 297 CharacterSet="1" 298 > 299 <Tool 300 Name="VCPreBuildEventTool" 301 /> 302 <Tool 303 Name="VCCustomBuildTool" 304 /> 305 <Tool 306 Name="VCXMLDataGeneratorTool" 307 /> 308 <Tool 309 Name="VCWebServiceProxyGeneratorTool" 310 /> 311 <Tool 312 Name="VCMIDLTool" 313 PreprocessorDefinitions="_DEBUG" 314 MkTypLibCompatible="false" 315 TargetEnvironment="1" 316 /> 317 <Tool 318 Name="VCCLCompilerTool" 319 ExecutionBucket="7" 320 Optimization="2" 321 FavorSizeOrSpeed="1" 322 AdditionalIncludeDirectories="..\..\include;..\..\..\osip\include" 323 PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL" 324 RuntimeLibrary="3" 325 TreatWChar_tAsBuiltInType="true" 326 UsePrecompiledHeader="0" 327 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 328 WarningLevel="3" 329 DebugInformationFormat="3" 330 /> 331 <Tool 332 Name="VCManagedResourceCompilerTool" 333 /> 334 <Tool 335 Name="VCResourceCompilerTool" 336 PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 337 Culture="1033" 338 AdditionalIncludeDirectories="$(IntDir)" 339 /> 340 <Tool 341 Name="VCPreLinkEventTool" 342 /> 343 <Tool 344 Name="VCLinkerTool" 345 AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 346 AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib" 347 IgnoreAllDefaultLibraries="true" 348 ModuleDefinitionFile="oRTP.def" 349 GenerateDebugInformation="true" 350 RandomizedBaseAddress="1" 351 DataExecutionPrevention="0" 352 TargetMachine="0" 353 /> 354 <Tool 355 Name="VCALinkTool" 356 /> 357 <Tool 358 Name="VCXDCMakeTool" 359 /> 360 <Tool 361 Name="VCBscMakeTool" 362 /> 363 <Tool 364 Name="VCFxCopTool" 365 /> 366 <Tool 367 Name="VCCodeSignTool" 368 /> 369 <Tool 370 Name="VCPostBuildEventTool" 371 /> 372 <DeploymentTool 373 ForceDirty="-1" 374 RemoteDirectory="%CSIDL_PROGRAM_FILES%\linphone" 375 RegisterOutput="0" 376 AdditionalFiles="" 377 /> 378 <DebuggerTool 379 /> 380 </Configuration> 381 <Configuration 292 382 Name="Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 293 383 OutputDirectory="$(PlatformName)\Release" … … 547 637 </Configuration> 548 638 <Configuration 549 Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)"550 OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)"551 IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)"552 ConfigurationType="2"553 UseOfMFC="0"554 CharacterSet="1"555 >556 <Tool557 Name="VCPreBuildEventTool"558 />559 <Tool560 Name="VCCustomBuildTool"561 />562 <Tool563 Name="VCXMLDataGeneratorTool"564 />565 <Tool566 Name="VCWebServiceProxyGeneratorTool"567 />568 <Tool569 Name="VCMIDLTool"570 PreprocessorDefinitions="_DEBUG"571 MkTypLibCompatible="false"572 TargetEnvironment="1"573 />574 <Tool575 Name="VCCLCompilerTool"576 Optimization="2"577 FavorSizeOrSpeed="1"578 AdditionalIncludeDirectories="..\..\include;..\..\..\osip\include"579 PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL"580 RuntimeLibrary="3"581 TreatWChar_tAsBuiltInType="true"582 UsePrecompiledHeader="0"583 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb"584 WarningLevel="3"585 DebugInformationFormat="3"586 />587 <Tool588 Name="VCManagedResourceCompilerTool"589 />590 <Tool591 Name="VCResourceCompilerTool"592 PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE"593 Culture="1033"594 AdditionalIncludeDirectories="$(IntDir)"595 />596 <Tool597 Name="VCPreLinkEventTool"598 />599 <Tool600 Name="VCLinkerTool"601 AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB"602 AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib"603 IgnoreAllDefaultLibraries="true"604 ModuleDefinitionFile="oRTP.def"605 GenerateDebugInformation="true"606 RandomizedBaseAddress="1"607 DataExecutionPrevention="0"608 TargetMachine="0"609 />610 <Tool611 Name="VCALinkTool"612 />613 <Tool614 Name="VCXDCMakeTool"615 />616 <Tool617 Name="VCBscMakeTool"618 />619 <Tool620 Name="VCFxCopTool"621 />622 <Tool623 Name="VCCodeSignTool"624 />625 <Tool626 Name="VCPostBuildEventTool"627 />628 <DeploymentTool629 ForceDirty="-1"630 RemoteDirectory=""631 RegisterOutput="0"632 AdditionalFiles=""633 />634 <DebuggerTool635 />636 </Configuration>637 <Configuration638 639 Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 639 640 OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" -
linphone/oRTP/src/ortp.c
r337 r839 257 257 } 258 258 msg=ortp_strdup_vprintf(fmt,args); 259 #if def _MSC_VER259 #if defined(_MSC_VER) && !defined(_WIN32_WCE) 260 260 OutputDebugString(msg); 261 261 OutputDebugString("\r\n");
Note: See TracChangeset
for help on using the changeset viewer.
