Changeset 188 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Jun 25, 2007, 5:41:01 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
r182 r188 552 552 char temporary[1024],temp2[MAX_PATH]; 553 553 554 MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK);554 //MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK); 555 555 trace( "Start ActiveBasic Compiler!" ); 556 556 -
trunk/abdev/BasicCompiler_Common/Const.cpp
r182 r188 26 26 27 27 28 CConst::CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type & type, _int64 i64data)28 CConst::CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type &newType, _int64 i64data) 29 29 : ConstBase( namespaceScopes, name ) 30 , type( type )30 , type( newType ) 31 31 , i64data( i64data ) 32 32 , pNext( NULL ) -
trunk/abdev/BasicCompiler_Common/Const.h
r182 r188 36 36 CConst *pNext; 37 37 38 CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type & type, _int64 i64data);38 CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type &newType, _int64 i64data); 39 39 CConst( const NamespaceScopes &namespaceScopes, const string &name, int value); 40 40 ~CConst(); -
trunk/abdev/BasicCompiler_Common/DebugMiddleFile.cpp
r182 r188 906 906 907 907 if(OpBuffer) HeapDefaultFree(OpBuffer); 908 OpBuffer=(char *) HeapAlloc(hHeap,0,SizeOf_CodeSection);908 OpBuffer=(char *)malloc(SizeOf_CodeSection); 909 909 910 910 ReadProcessMemory(hDebugProcess,
Note:
See TracChangeset
for help on using the changeset viewer.