<br><font size=2 face="sans-serif">Ardy,</font>
<br>
<br><font size=2 face="sans-serif">Can you send the list of those unresolved
external symbols?</font>
<br>
<br><font size=2 face="sans-serif">Ishwar</font>
<br>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>&quot;Ardy Salim&quot;
&lt;ASalim@ntu.edu.sg&gt;</b> </font>
<br><font size=1 face="sans-serif">Sent by: live-devel-bounces@ns.live555.com</font>
<p><font size=1 face="sans-serif">03/28/2008 02:52 AM</font>
<table border>
<tr valign=top>
<td bgcolor=white>
<div align=center><font size=1 face="sans-serif">Please respond to<br>
LIVE555 Streaming Media - development &amp; use &nbsp; &nbsp; &nbsp; &nbsp;&lt;live-devel@ns.live555.com&gt;</font></div></table>
<br>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">To</font></div>
<td><font size=1 face="sans-serif">&quot;LIVE555 Streaming Media - development
&amp; use&quot; &lt;live-devel@ns.live555.com&gt;</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Subject</font></div>
<td><font size=1 face="sans-serif">Re: [Live-devel] Building Live555 streaming
media in &nbsp; &nbsp; &nbsp; &nbsp;WindowsMobile &nbsp; &nbsp;
&nbsp; &nbsp;5.0</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><font size=2><tt>Ok, this problem is solved. It is just some wrong
typo in the project settings.<br>
The other Errors are the LNK2019: unsolved external symbol. I've searched
from other forums, they said that to solve this problem, I need to add
the libraries correspond to those functions/symbols which are unmanaged.<br>
I think these are the differences between SH4 platform and ARMV4 (pocket
PC) platform. I've tried to add come relevant libraries but still could
not find the correct one. Is it really impossible to port the program it
into Windows mobile?<br>
 <br>
Regards,<br>
Ardy<br>
<br>
________________________________<br>
<br>
From: live-devel-bounces@ns.live555.com on behalf of Ardy Salim<br>
Sent: Fri 3/28/2008 11:32 AM<br>
To: LIVE555 Streaming Media - development &amp; use<br>
Subject: RE: [Live-devel] Building Live555 streaming media in WindowsMobile
5.0<br>
<br>
<br>
Hi,<br>
 <br>
the problems is solved... actually I just need to add (int) in front of
the fileno() function. The project is build successfully. however, now
the problem lies on the application. Any application that I tried to build
does not seem to work. I've tried some of the test programs and it shows
many errors.<br>
when I try to build openRTSP test program, it shows this error:<br>
groupsock.lib(GroupsockHelper.obj) : fatal error LNK1112: module machine
type 'ARM' conflicts with target machine type 'X86'<br>
 <br>
Is there any solution for this problem?<br>
thank you very much<br>
 <br>
Regards,<br>
Ardy<br>
<br>
________________________________<br>
<br>
From: live-devel-bounces@ns.live555.com on behalf of Ishwar.Jasuja@jci.com<br>
Sent: Fri 3/28/2008 4:08 AM<br>
To: LIVE555 Streaming Media - development &amp; use<br>
Subject: Re: [Live-devel] Building Live555 streaming media in WindowsMobile
5.0<br>
<br>
<br>
<br>
WINCE does have _fileno() function that can be used to get fd from FILE
pointer. <br>
But I dont know if that would work. I have only used select() call for
socket communication in our system which is based on WinCE. <br>
<br>
WINCE documentation states that the select can only be used for sockets.
<br>
<br>
see the description below. <br>
<br>
<br>
This structure is used by various Windows Sockets functions and service
providers, such as the select function, to place sockets into a set for
various purposes. For example, the readfds parameter of the select function
can be used for testing a socket for readability. <br>
<br>
typedef struct fd_set {<br>
 u_int fd_count;<br>
 SOCKET fd_array[FD_SETSIZE];<br>
} fd_set; <br>
Members <br>
fd_count <br>
Number of sockets in the set. <br>
fd_array <br>
Array of sockets that are in the set. <br>
Requirements <br>
<br>
OS Versions: Windows CE .NET 4.0 and later.<br>
Header: Winsock2.h. <br>
<br>
See Also <br>
<br>
sele <br>
<br>
<br>
<br>
<br>
<br>
Ross Finlayson &lt;finlayson@live555.com&gt; <br>
Sent by: live-devel-bounces@ns.live555.com <br>
<br>
03/27/2008 12:47 PM <br>
Please respond to<br>
LIVE555 Streaming Media - development &amp; use &nbsp; &nbsp; &nbsp; &nbsp;&lt;live-devel@ns.live555.com&gt;<br>
<br>
<br>
To<br>
LIVE555 Streaming Media - development &amp; use &lt;live-devel@ns.live555.com&gt;
<br>
cc<br>
Subject<br>
Re: [Live-devel] Building Live555 streaming media in Windows Mobile &nbsp;
&nbsp; &nbsp; &nbsp;5.0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; <br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
<br>
<br>
<br>
<br>
You should have following defined in that file.<br>
<br>
#define READ_FROM_FILES_SYNCHRONOUSLY 1<br>
<br>
That should take care of your problem. <br>
<br>
Yes, but that's not necessarily what he wants. &nbsp;Does Wince allow open
files to be handled as select()able sockets (as Windows XP, and all Unix
systems, do)? &nbsp;If so, then you *don't* want file reads to be performed
synchronously. <br>
<br>
If, however, Wince is brain-damaged (like many versions of Windows) and
doesn't allow open files to he handled as select()able sockets, then, yes,
you will want to define <br>
 &nbsp; &nbsp; &nbsp; &nbsp;READ_FROM_FILES_SYNCHRONOUSLY <br>
-- <br>
<br>
<br>
Ross Finlayson<br>
Live Networks, Inc.<br>
http://www.live555.com/_______________________________________________<br>
live-devel mailing list<br>
live-devel@lists.live555.com<br>
http://lists.live555.com/mailman/listinfo/live-devel<br>
<br>
<br>
<br>
[attachment &quot;winmail.dat&quot; deleted by Ishwar Jasuja/NA/Johnson_Controls]
_______________________________________________<br>
live-devel mailing list<br>
live-devel@lists.live555.com<br>
http://lists.live555.com/mailman/listinfo/live-devel<br>
</tt></font>
<br>