Changeset 279 in dev for trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
- Timestamp:
- Aug 14, 2007, 3:22:02 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
r276 r279 206 206 } 207 207 208 void ShowErrorLine(int LineNum,c har *FileName){208 void ShowErrorLine(int LineNum,const char *constFileName){ 209 209 HANDLE hFile; 210 210 DWORD dw; 211 char FileName[MAX_PATH]; 211 212 char temporary[MAX_PATH]; 213 214 lstrcpy( FileName, constFileName ); 212 215 213 216 if(LineNum==-1) return; … … 216 219 if(FileName){ 217 220 218 while( !IsFile(FileName)){221 while( !IsFileExist( FileName ) ){ 219 222 char temp2[MAX_PATH],temp3[MAX_PATH]; 220 223 _splitpath(FileName,NULL,NULL,temp2,temp3);
Note:
See TracChangeset
for help on using the changeset viewer.