Changeset 43 in dev for BasicCompiler_Common


Ignore:
Timestamp:
Jan 30, 2007, 2:40:30 AM (17 years ago)
Author:
dai_9181
Message:
 
Location:
BasicCompiler_Common
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Intermediate_Step2.cpp

    r42 r43  
    376376                KillStringSpaces(Command+2);
    377377                break;
    378             case ESC_CONST:
    379             case ESC_BYREF:
    380                 KillStringSpaces(Command+2);
    381                 break;
    382378            case ESC_TYPEDEF:
    383379                KillStringSpaces(Command+2);
     
    409405            case ESC_TYPE:
    410406                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                }
    411414                break;
    412415
  • BasicCompiler_Common/common.h

    r40 r43  
    3838
    3939#ifdef _AMD64_
    40 #define VER_INFO        "β10 (x64)"
     40#define VER_INFO        "β11 (x64)"
    4141#else
    42 #define VER_INFO        "β10"
     42#define VER_INFO        "β11"
    4343#endif
    4444
  • BasicCompiler_Common/preprocessor.cpp

    r31 r43  
    7474#endif
    7575
     76    extern BOOL bDll;
     77    if( bDll ){
     78        add("_DLL");
     79    }
     80
    7681    char temporary[255];
    7782    sprintf(temporary,"_AB_VER%d",MAJOR_VER);
Note: See TracChangeset for help on using the changeset viewer.