在一个工程中,新建一个头文件,没有问题,然后又新建一个.cpp文件。Name:               INIFileRW.h void ReadINIParm( char *, char *, char *, int, int * );

Name: INIFileRW.cpp
void ReadINIParm( char * pszSection,
  char * pszVariableName,
  char * pszDefaultValue,
  int nSize,
  int * nValue )
{
GetINIFileName();
GetPrivateProfileString( pszSection, pszVariableName, pszDefaultValue, pszStringValue, 
 nSize, pszFileName);
*nValue = atoi( pszStringValue );
}
但是在添加完代码以后出现错误:
fatal error C1010: unexpected end of file while looking for precompiled header directive
即便是不加代码,也会出现错误。
请高手解决