A la espera de que la lista se pronuncie, he conseguido solucionar el error con este código que parece funcionar bien
- Code: Select all Expand view
#include <dirent.h>
#include <fnmatch.h>
DIR * opendir$INODE64$UNIX2003( char * dirName )
{
return opendir( dirName );
}
struct dirent * readdir$INODE64( DIR * dir )
{
return readdir( dir );
}
BOOL closedir$UNIX2003( DIR * dir )
{
return closedir( dir );
}
int fnmatch$UNIX2003( const char * pattern, const char * string, int flags )
{
return fnmatch( pattern, string, flags );
}