Changeset 320 in dev
- Timestamp:
- Sep 9, 2007, 1:16:44 PM (17 years ago)
- Location:
- trunk/abdev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_CallProc.cpp
r307 r320 215 215 lstrcpy(temporary,"0,"); 216 216 } 217 if( pUserProc->ReturnType().IsStruct() ){ 218 // ※ByRef _System_ReturnValue パラメータのダミーをセット 219 lstrcat(temporary,"0,"); 220 } 217 221 218 222 if(Parameter[0]=='\0'&&temporary[0]) -
trunk/abdev/BasicCompiler64/Compile_CallProc.cpp
r316 r320 223 223 lstrcpy(temporary,"0,"); 224 224 } 225 if( pUserProc->ReturnType().IsStruct() ){ 226 // ※ByRef _System_ReturnValue パラメータのダミーをセット 227 lstrcat(temporary,"0,"); 228 } 225 229 226 230 if(Parameter[0]=='\0'&&temporary[0]) … … 267 271 pobj_parameter->SetParameter(pUserProc->GetName(),pUserProc->RealParams(),pUserProc->GetRealSecondParmNum(), pUserProc ); 268 272 269 if( pUserProc->ReturnType().IsStruct() ){273 if( pUserProc->ReturnType().IsStruct() ){ 270 274 ////////////////////////////////////////////////////// 271 275 // 戻り値に構造体インスタンスを持つ場合 -
trunk/abdev/BasicCompiler_Common/include/ver.h
r318 r320 6 6 // バージョン付加文字列 7 7 #ifdef _AMD64_ 8 #define VER_INFO "(x64) (rev.3 22)"8 #define VER_INFO "(x64) (rev.331)" 9 9 #else 10 #define VER_INFO "(rev.3 22)"10 #define VER_INFO "(rev.331)" 11 11 #endif
Note:
See TracChangeset
for help on using the changeset viewer.