Hello,
I started to perform some application under Win CE, which uses libmad algorithm . But there are several function (write, read, fcntl), which are not supported under Win CE. As far as I understand instead of these function can be used - fread, fwrite- with FILE* , instead of handle. But function, which associate handle with FILE* - _fdopen is not supported under WIN CE, too.
I'll be very glad if you share some ideas how to solve this problem.
Thank you in advance.
Ivan
____________________________________________________________________ Get free email and a permanent address at http://www.netaddress.com/?N=1
Ivan Mi wrote:
I started to perform some application under Win CE, which uses libmad algorithm . But there are several function (write, read, fcntl), which are not supported under Win CE. As far as I understand instead of these function can be used - fread, fwrite- with FILE* , instead of handle. But function, which associate handle with FILE* - _fdopen is not supported under WIN CE, too.
I'll be very glad if you share some ideas how to solve this problem.
You can eliminate decoder.o from the library -- this will solve most of your compatibility issues. As a consequence however, you will need to use the low-level API rather than the high-level one.
I'm thinking about removing this from the core library to avoid this problem.
Cheers, -rob