Changeset 69 in dev for ProjectEditor/SubOperation.cpp
- Timestamp:
- Mar 13, 2007, 4:52:59 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/SubOperation.cpp
r58 r69 419 419 else if(str[0]=='b'||str[0]=='B'){ 420 420 if(lstrcmpi(str,"Beep")==0) return COM_BEEP; 421 if(lstrcmp i(str,"Boolean")==0) return -1;421 if(lstrcmp(str,"Boolean")==0) return -1; 422 422 if(lstrcmpi(str,"ByRef")==0) return -1; 423 423 if(lstrcmpi(str,"ByVal")==0) return -1; 424 if(lstrcmp i(str,"Byte")==0) return -1;424 if(lstrcmp(str,"Byte")==0) return -1; 425 425 } 426 426 else if(str[0]=='c'||str[0]=='C'){ 427 427 if(lstrcmpi(str,"Case")==0) return -1; 428 if(lstrcmp i(str,"Char")==0) return -1;428 if(lstrcmp(str,"Char")==0) return -1; 429 429 if(lstrcmpi(str,"ChDir")==0) return COM_CHDIR; 430 430 if(lstrcmpi(str,"Circle")==0) return COM_CIRCLE; … … 444 444 if(lstrcmpi(str,"Dim")==0) return COM_DIM; 445 445 if(lstrcmpi(str,"Do")==0) return COM_DO; 446 if(lstrcmp i(str,"Double")==0) return -1;447 if(lstrcmp i(str,"DWord")==0) return -1;446 if(lstrcmp(str,"Double")==0) return -1; 447 if(lstrcmp(str,"DWord")==0) return -1; 448 448 } 449 449 else if(str[0]=='e'||str[0]=='E'){ … … 480 480 if(lstrcmpi(str,"Inherits")==0) return COM_INHERITS; 481 481 if(lstrcmpi(str,"Input")==0) return COM_INPUT; 482 if(lstrcmp i(str,"Int64")==0) return -1;483 if(lstrcmp i(str,"Integer")==0) return -1;482 if(lstrcmp(str,"Int64")==0) return -1; 483 if(lstrcmp(str,"Integer")==0) return -1; 484 484 if(lstrcmpi(str,"Interface")==0) return COM_INTERFACE; 485 485 } … … 491 491 if(lstrcmpi(str,"Line")==0) return COM_LINE; 492 492 if(lstrcmpi(str,"Locate")==0) return COM_LOCATE; 493 if(lstrcmp i(str,"Long")==0) return -1;493 if(lstrcmp(str,"Long")==0) return -1; 494 494 if(lstrcmpi(str,"Loop")==0) return COM_LOOP; 495 495 } … … 501 501 if(lstrcmpi(str,"Next")==0) return COM_NEXT; 502 502 if(lstrcmpi(str,"New")==0) return -1; 503 if(lstrcmpi(str,"Nothing")==0) return -1; 503 504 } 504 505 else if(str[0]=='o'||str[0]=='O'){ … … 517 518 } 518 519 else if(str[0]=='q'||str[0]=='Q'){ 519 if(lstrcmp i(str,"QWord")==0) return -1;520 if(lstrcmp(str,"QWord")==0) return -1; 520 521 } 521 522 else if(str[0]=='r'||str[0]=='R'){ … … 525 526 } 526 527 else if(str[0]=='s'||str[0]=='S'){ 527 if(lstrcmp i(str,"SByte")==0) return -1;528 if(lstrcmp(str,"SByte")==0) return -1; 528 529 if(lstrcmpi(str,"Select")==0) return COM_SELECT; 529 530 if(lstrcmpi(str,"SelectCase")==0) return COM_SELECT; 530 if(lstrcmp i(str,"Single")==0) return -1;531 if(lstrcmp(str,"Single")==0) return -1; 531 532 if(lstrcmpi(str,"Sleep")==0) return COM_SLEEP; 532 533 if(lstrcmpi(str,"Static")==0) return -1; … … 551 552 if(lstrcmpi(str,"Window")==0) return COM_WINDOW; 552 553 if(lstrcmpi(str,"With")==0) return COM_WITH; 553 if(lstrcmp i(str,"Word")==0) return -1;554 if(lstrcmp(str,"Word")==0) return -1; 554 555 if(lstrcmpi(str,"Write")==0) return COM_WRITE; 555 556 }
Note:
See TracChangeset
for help on using the changeset viewer.