Ignore:
Timestamp:
Aug 24, 2007, 2:10:26 AM (17 years ago)
Author:
dai
Message:

【32bitコンパイラ】
静的リンクライブラリを実装
ジェネリクスを実装
※64bitコンパイラは未実装

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/ActiveBasic/Core/TypeInfo.ab

    r275 r299  
    174174Class _System_TypeBase
    175175    Static pTypes As *TypeBaseImpl
    176     Static count As Long
     176
    177177    Static isReady = False
    178178
     
    207207
    208208Public
    209 
     209    Static count As Long
    210210    Static Sub Initialize()
    211211        pTypes = GC_malloc( 1 )
     
    230230    Static Function Search( strNamespace As LPSTR, typeName As LPSTR ) As TypeBaseImpl
    231231        ' TODO: 名前空間に対応する
     232
    232233        Dim i As Long
    233234        For i = 0 To ELM( count )
     
    251252End Namespace
    252253End Namespace
     254
     255Function _System_TypeBase_Search( strNamespace As LPSTR, typeName As LPSTR ) As ActiveBasic.Core.TypeBaseImpl
     256    Return ActiveBasic.Core._System_TypeBase.Search( strNamespace, typeName )
     257End Function
Note: See TracChangeset for help on using the changeset viewer.