/* 命令語定数 */ //条件、分岐、繰り返し #define COM_DO 0x1021 /* 0x22は「"」なので使用不可 */ #define COM_GOTO 0x1023 #define COM_GOSUB 0x1024 #define COM_LOOP 0x1026 #define COM_RETURN 0x1027 /* 0x28は「(」なので使用不可 */ /* 0x29は「)」なので使用不可 */ #define COM_FOR 0x1031 #define COM_NEXT 0x1032 #define COM_WHILE 0x1036 #define COM_WEND 0x1037 #define COM_FOREACH 0x1038 //データ操作 #define COM_DIM 0x1062 #define COM_LET 0x1066 #define COM_DELETE 0x1068 #define COM_SWEEPINGDELETE 0x1069 //その他 #define COM_DEBUG 0x1073 //ポインタ #define COM_SETDOUBLE 0x10C1 #define COM_SETSINGLE 0x10C2 #define COM_SETQWORD 0x10C3 #define COM_SETDWORD 0x10C4 #define COM_SETWORD 0x10C5 #define COM_SETBYTE 0x10C6 /////////////////////////////////// // 以下はProjectEditorで使用される //入出力コマンド #define COM_PRINT 0x1150 #define COM_INPUT 0x1151 #define COM_OPEN 0x1152 #define COM_CLOSE 0x1153 #define COM_FIELD 0x1154 #define COM_WRITE 0x1155 //条件、分岐、繰り返し #define COM_IF 0x1160 #define COM_SELECT 0x1161 //ファイル操作 #define COM_CHDIR 0x1170 #define COM_KILL 0x1171 #define COM_MKDIR 0x1172 #define COM_GET 0x1173 #define COM_PUT 0x1174 //グラフィックス #define COM_CIRCLE 0x1180 #define COM_LINE 0x1181 #define COM_PAINT 0x1182 #define COM_PSET 0x1183 //データ操作 #define COM_CONST 0x1190 #define COM_TYPEDEF 0x1191 //クラス関連 #define COM_CLASS 0x1195 #define COM_PRIVATE 0x1196 #define COM_PUBLIC 0x1197 #define COM_INHERITS 0x1198 #define COM_PROTECTED 0x1199 #define COM_INTERFACE 0x119A //その他 #define COM_BEEP 0x11A0 #define COM_CLS 0x11A1 #define COM_COLOR 0x11A2 #define COM_DECLARE 0x11A4 #define COM_DEF 0x11A5 #define COM_END 0x11A6 #define COM_FUNCTION 0x11A7 #define COM_LOCATE 0x11A8 #define COM_RANDOMIZE 0x11A9 #define COM_REM 0x11AA #define COM_SLEEP 0x11AB #define COM_SUB 0x11AC #define COM_TYPE 0x11AD #define COM_VIRTUAL 0x11AE #define COM_OVERRIDE 0x11AF #define COM_WITH 0x11B0 #define COM_ENUM 0x11B1 #define COM_ABSTRACT 0x11B2 #define COM_NAMESPACE 0x11B3 #define COM_TRY 0x11B4 //ウィンドウ制御 #define COM_DELWND 0x11C0 #define COM_MSGBOX 0x11C1 #define COM_WINDOW 0x11C2