Changeset 95 in dev for BasicCompiler64/MakePeHdr.cpp
- Timestamp:
- Apr 15, 2007, 1:34:02 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/MakePeHdr.cpp
r91 r95 6 6 // 特殊関数の構造体ポインタ 7 7 //////////////////////////// 8 9 // グローバル関数、静的メソッド 8 10 UserProc 9 11 *pSub_System_StartupProgram, … … 24 26 *pSub_System_GC_free_for_SweepingDelete, 25 27 *pSubStaticMethod_System_TypeBase_InitializeUserTypes; 28 29 // 動的メソッド 30 UserProc 31 *pUserProc_System_CGarbageCollection_RegisterGlobalRoots; 26 32 27 33 … … 231 237 pSubStaticMethod_System_TypeBase_InitializeUserTypes->Using(); 232 238 pSubStaticMethod_System_TypeBase_InitializeUserTypes->ThisIsAutoGenerationProc(); 239 } 240 241 if( pUserProc_System_CGarbageCollection_RegisterGlobalRoots = GetClassMethod( "_System_CGarbageCollection", "RegisterGlobalRoots" ) ){ 242 pUserProc_System_CGarbageCollection_RegisterGlobalRoots->Using(); 243 pUserProc_System_CGarbageCollection_RegisterGlobalRoots->ThisIsAutoGenerationProc(); 233 244 } 234 245
Note:
See TracChangeset
for help on using the changeset viewer.