/*
* wincecompat.c : wince compatiblity module
*
* See Copyright for the status of this software.
*
* javier@tiresiassoft.com
*
* 17 Sep 2002 created
*/
#include "wincecompat.h"
"Exec format error","Bad file number","","","Not enough core","Permission denied","","",
"","File exists","Cross-device link","","","","Invalid argument","","Too many open files",
"","","","No space left on device","","","","","Math argument","Result too large","",
"Resource deadlock would occur", "Unknown error under wince"};
int errno=0;
{
}
{
}
{
mode[2]=0;
mode[0]="w";
mode[0]="r";
}
{
}
{
/* Windows CE don't have the concept of a current directory
* so we just return NULL to indicate an error
*/
return NULL;
}
{
return NULL;
}
{
if (errnum>MAX_STRERROR)
return strError[MAX_STRERROR];
else
}