Changeset 43 in dev
- Timestamp:
- Jan 30, 2007, 2:40:30 AM (18 years ago)
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/BasicCompiler.vcproj
r34 r43 1485 1485 > 1486 1486 </File> 1487 <File1488 RelativePath="..\BasicCompiler_Common\Schedule.cpp"1489 >1490 </File>1491 <File1492 RelativePath="..\BasicCompiler_Common\Schedule.h"1493 >1494 </File>1495 1487 </Filter> 1496 1488 <Filter -
BasicCompiler_Common/Intermediate_Step2.cpp
r42 r43 376 376 KillStringSpaces(Command+2); 377 377 break; 378 case ESC_CONST:379 case ESC_BYREF:380 KillStringSpaces(Command+2);381 break;382 378 case ESC_TYPEDEF: 383 379 KillStringSpaces(Command+2); … … 409 405 case ESC_TYPE: 410 406 KillStringSpaces(Command+2); 407 break; 408 409 case ESC_CONST: 410 KillStringSpaces(Command+2); 411 if( Command[2] == 1 && Command[3] == ESC_ENUM ){ 412 nCountOfNonGlobalScope++; 413 } 411 414 break; 412 415 -
BasicCompiler_Common/common.h
r40 r43 38 38 39 39 #ifdef _AMD64_ 40 #define VER_INFO "β1 0(x64)"40 #define VER_INFO "β11 (x64)" 41 41 #else 42 #define VER_INFO "β1 0"42 #define VER_INFO "β11" 43 43 #endif 44 44 -
BasicCompiler_Common/preprocessor.cpp
r31 r43 74 74 #endif 75 75 76 extern BOOL bDll; 77 if( bDll ){ 78 add("_DLL"); 79 } 80 76 81 char temporary[255]; 77 82 sprintf(temporary,"_AB_VER%d",MAJOR_VER); -
ProjectEditor/Common.h
r29 r43 62 62 #define APPLICATION_NAME "ActiveBasic 5.0" 63 63 #define VERSION_APPLI_NAME APPLICATION_NAME 64 #define VERSION_STRING "5.00.00 β1 0"64 #define VERSION_STRING "5.00.00 β11" 65 65 66 66 #endif
Note:
See TracChangeset
for help on using the changeset viewer.