Changeset 214 for Include/basic


Ignore:
Timestamp:
Apr 15, 2007, 1:55:46 AM (17 years ago)
Author:
dai
Message:

GCでのメモリ回収処理を、実行時型情報を元に行うようにした。

Location:
Include/basic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Include/basic/command.sbp

    r179 r214  
    266266
    267267Dim _System_UsingDblData[_System_MAX_PARMSNUM] As Double
    268 Dim _System_UsingStrData[_System_MAX_PARMSNUM] As String
     268Dim _System_UsingStrData[_System_MAX_PARMSNUM] As *Char     'TODO: 暫定対応(動作未確認)
    269269Dim _System_UsingDataType[_System_MAX_PARMSNUM] As DWord
    270270Function _System_GetUsingFormat(UsingStr As String) As String
  • Include/basic/function.sbp

    r208 r214  
    779779            i64data=1
    780780            While i>=2
    781                 Val += i64data * TempPtr[i]
     781                Val += ( i64data * TempPtr[i] ) As Double
    782782
    783783                i64data *= &O10
Note: See TracChangeset for help on using the changeset viewer.