Hello Friends,
I am trying to porting some pre-existing code to VC++ 2005 in Win XP environment. I have a segment of code like,
...
#include<fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
...
...
cm_iFile = open(l_chBuff,O_RDONLY|O_BINARY);
...
During compiling this file I am getting the following error message,
..\source\CRaterEDRFile.cpp(276) : error C3861: 'open': identifier not found
Pls, help me to fix the problem.
Amit