Changeset 69 in dev for BasicCompiler64/NumOpe.cpp
- Timestamp:
- Mar 13, 2007, 4:52:59 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/NumOpe.cpp
r68 r69 14 14 ////////////////////////////////////////////////////// 15 15 16 char *parameter = (char *)malloc( lstrlen( lpszText ) + 3 );17 lstrcpy( parameter, lpszText);16 char *parameter = (char *)malloc( lstrlen( lpszText ) + 32 ); 17 sprintf( parameter, "\"%s\"%c%c*Char", lpszText, 1, ESC_AS ); 18 18 SetStringQuotes( parameter ); 19 19 … … 222 222 type[sp]=DEF_OBJECT; 223 223 index_stack[sp]=(LONG_PTR)pobj_StringClass; 224 bUseHeap[sp]=1;225 224 bLiteralCalculation=0; 226 225 … … 233 232 } 234 233 235 type[sp]= DEF_PTR_CHAR;234 type[sp]=typeOfPtrChar; 236 235 bLiteralCalculation=0; 237 236
Note:
See TracChangeset
for help on using the changeset viewer.