Changeset 15 in dev for BasicCompiler64
- Timestamp:
- Dec 11, 2006, 3:07:59 AM (18 years ago)
- Location:
- BasicCompiler64
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/BasicCompiler.vcproj
r14 r15 1522 1522 </File> 1523 1523 </Filter> 1524 <Filter1525 Name="LexicalAnalysis"1526 >1527 <File1528 RelativePath="..\BasicCompiler_Common\LexicalAnalysis.cpp"1529 >1530 </File>1531 <File1532 RelativePath="..\BasicCompiler_Common\LexicalAnalysis.h"1533 >1534 </File>1535 </Filter>1536 1524 </Filter> 1537 1525 </Filter> -
BasicCompiler64/Compile_Object.cpp
r3 r15 75 75 } 76 76 } 77 int Operator_New(c har *Parameter,LONG_PTR *plpIndex){77 int Operator_New(const char *Parameter,LONG_PTR *plpIndex){ 78 78 char TypeName[VN_SIZE],CreateParameter[VN_SIZE],ObjectSize[VN_SIZE]; 79 79 int i,i2; … … 237 237 } 238 238 239 void OpcodeDelete(c har *Parameter){239 void OpcodeDelete(const char *Parameter){ 240 240 int type; 241 241 -
BasicCompiler64/MakePeHdr.cpp
r14 r15 154 154 char *temp; 155 155 temp=CEnumParent::GenerateCodes(); 156 CSource::obj.AddSourceCode(temp); 157 basbuf = CSource::obj.SourceCode; 156 AddSourceCode(temp); 158 157 HeapDefaultFree(temp); 159 158 -
BasicCompiler64/NumOpe.cpp
r11 r15 108 108 } 109 109 110 int NumOpe(int *pReg,c har *Command,int BaseType,LONG_PTR lpBaseIndex,LONG_PTR *plpIndex,BOOL *pbUseHeap){110 int NumOpe(int *pReg,const char *Command,int BaseType,LONG_PTR lpBaseIndex,LONG_PTR *plpIndex,BOOL *pbUseHeap){ 111 111 extern HANDLE hHeap; 112 112 int i,i2,i3,i4; -
BasicCompiler64/Opcode.h
r11 r15 250 250 251 251 //NumOpe.cpp 252 int NumOpe(int *pReg,c har *Command,int BaseType,LONG_PTR lpBaseIndex,LONG_PTR *plpIndex,BOOL *pbUseHeap=0);252 int NumOpe(int *pReg,const char *Command,int BaseType,LONG_PTR lpBaseIndex,LONG_PTR *plpIndex,BOOL *pbUseHeap=0); 253 253 254 254 //NumOpe_Arithmetic.cpp … … 311 311 312 312 //Compile_Object.cpp 313 int Operator_New(c har *Parameter,LONG_PTR *plpIndex);314 void OpcodeDelete(c har *Parameter);313 int Operator_New(const char *Parameter,LONG_PTR *plpIndex); 314 void OpcodeDelete(const char *Parameter); 315 315 316 316 //Compile_Var.cpp
Note:
See TracChangeset
for help on using the changeset viewer.