I downloaded the libjingle.zip file from sourceforge and have gotten
the libjingle, ortsp to compile and link on windows.
I have also gotten the login example to compile link and run.
I am trying to get the call sample to compile and link but have so far
been unsucessful.
It looks like in console.cc, the following line does not compile:
_stdin = CreateFile(0);
This is because there is no CreateFile except on POSIX and the one in
the windows library takes seven arguments including the file name, so I
don't think its working like the POSIX version.
Without this, I am able to get it to login and connect, but I am
assuming that it is waiting for input from the console to act on to
actually call a user.
Has anyone gotten this to work?
Can anyone give me some guidance as to how to replace this code with
something for the windows platform.