Changeset 36 in dev for ProjectEditor
- Timestamp:
- Jan 20, 2007, 4:55:26 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/SubOperation.cpp
r24 r36 415 415 if(str[0]=='a'||str[0]=='A'){ 416 416 if(lstrcmpi(str,"Abstract")==0) return COM_ABSTRACT; 417 if(lstrcmpi(str,"As")==0) return -1; 417 418 } 418 419 else if(str[0]=='b'||str[0]=='B'){ 419 420 if(lstrcmpi(str,"Beep")==0) return COM_BEEP; 421 if(lstrcmpi(str,"Boolean")==0) return -1; 422 if(lstrcmpi(str,"Byte")==0) return -1; 420 423 } 421 424 else if(str[0]=='c'||str[0]=='C'){ 422 425 if(lstrcmpi(str,"Case")==0) return -1; 426 if(lstrcmpi(str,"Char")==0) return -1; 423 427 if(lstrcmpi(str,"ChDir")==0) return COM_CHDIR; 424 428 if(lstrcmpi(str,"Circle")==0) return COM_CIRCLE; … … 438 442 if(lstrcmpi(str,"Dim")==0) return COM_DIM; 439 443 if(lstrcmpi(str,"Do")==0) return COM_DO; 444 if(lstrcmpi(str,"Double")==0) return -1; 445 if(lstrcmpi(str,"DWord")==0) return -1; 440 446 } 441 447 else if(str[0]=='e'||str[0]=='E'){ … … 458 464 } 459 465 else if(str[0]=='f'||str[0]=='F'){ 466 if(lstrcmp(str,"False")==0) return -1; 460 467 if(lstrcmpi(str,"Field")==0) return COM_FIELD; 461 468 if(lstrcmpi(str,"For")==0) return COM_FOR; … … 471 478 if(lstrcmpi(str,"Inherits")==0) return COM_INHERITS; 472 479 if(lstrcmpi(str,"Input")==0) return COM_INPUT; 480 if(lstrcmpi(str,"Int64")==0) return -1; 481 if(lstrcmpi(str,"Integer")==0) return -1; 473 482 if(lstrcmpi(str,"Interface")==0) return COM_INTERFACE; 474 483 } … … 480 489 if(lstrcmpi(str,"Line")==0) return COM_LINE; 481 490 if(lstrcmpi(str,"Locate")==0) return COM_LOCATE; 491 if(lstrcmpi(str,"Long")==0) return -1; 482 492 if(lstrcmpi(str,"Loop")==0) return COM_LOOP; 483 493 } … … 503 513 if(lstrcmpi(str,"Public")==0) return COM_PUBLIC; 504 514 } 515 else if(str[0]=='q'||str[0]=='Q'){ 516 if(lstrcmpi(str,"QWord")==0) return -1; 517 } 505 518 else if(str[0]=='r'||str[0]=='R'){ 506 519 if(lstrcmpi(str,"Randomize")==0) return COM_RANDOMIZE; … … 511 524 if(lstrcmpi(str,"Select")==0) return COM_SELECT; 512 525 if(lstrcmpi(str,"SelectCase")==0) return COM_SELECT; 526 if(lstrcmpi(str,"Single")==0) return -1; 513 527 if(lstrcmpi(str,"Sleep")==0) return COM_SLEEP; 514 528 if(lstrcmpi(str,"Static")==0) return -1; … … 518 532 else if(str[0]=='t'||str[0]=='T'){ 519 533 if(lstrcmpi(str,"Then")==0) return -1; 534 if(lstrcmp(str,"True")==0) return -1; 520 535 if(lstrcmpi(str,"Type")==0) return COM_TYPE; 521 536 if(lstrcmpi(str,"TypeDef")==0) return COM_TYPEDEF; … … 532 547 if(lstrcmpi(str,"Window")==0) return COM_WINDOW; 533 548 if(lstrcmpi(str,"With")==0) return COM_WITH; 549 if(lstrcmpi(str,"Word")==0) return -1; 534 550 if(lstrcmpi(str,"Write")==0) return COM_WRITE; 535 551 }
Note:
See TracChangeset
for help on using the changeset viewer.