Changeset 110 in dev
- Timestamp:
- May 6, 2007, 7:35:28 PM (18 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Func.cpp
r109 r110 384 384 //mov eax,dword ptr[eax] 385 385 op_mov_RM( sizeof(long), REG_EAX, REG_EAX, 0, MOD_BASE ); 386 387 SetError(-120,NULL,cp); 386 388 } 387 389 } -
BasicCompiler_Common/common.h
r108 r110 47 47 48 48 #ifdef _AMD64_ 49 #define VER_INFO "(x64) β rev.2 28"49 #define VER_INFO "(x64) β rev.231" 50 50 #else 51 #define VER_INFO "β rev.2 28"51 #define VER_INFO "β rev.231" 52 52 #endif 53 53 -
BasicCompiler_Common/error.cpp
r109 r110 81 81 if(num==-106) sprintf(msg,"[警告] DLLファイル \"%s\" が見つかりません。",tempKeyWord); 82 82 if(num==-107) sprintf(msg,"[警告] DLL関数 \"%s\" を参照できません。",tempKeyWord); 83 if(num==-120) sprintf(msg,"[警告] VarPtr関数の引数にオブジェクト インスタンスが指定されました。オブジェクトの先頭アドレスを取得したいときはObjPtr関数に切り替えをお願いします。m(__)m(この警告はVarPtr→ObjPtrへの切り替えが完了したら消します(切り替えは \"適材箇所に限り\" ですので、ご注意ください!))",tempKeyWord); 83 84 #else 84 85 #endif
Note:
See TracChangeset
for help on using the changeset viewer.