Changeset 289 for Include/Classes
- Timestamp:
- Aug 15, 2007, 3:29:59 AM (17 years ago)
- Location:
- Include/Classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/ActiveBasic/Math/Math.ab
r285 r289 66 66 Dim p = VarPtr(x) As *DWord 67 67 p[1] And= &H7FF00000 68 IsFinite = p[1] And &H7FF00000= &H7FF0000068 IsFinite = ( p[1] And &H7FF00000 ) = &H7FF00000 69 69 End Function 70 70 -
Include/Classes/System/Collections/ArrayList.ab
r279 r289 319 319 320 320 Static Function FixedSize(l As IList) As IList 321 Return FixedSize(Adapter( VarPtr(l)))321 Return FixedSize(Adapter(l)) 322 322 End Function 323 323 -
Include/Classes/System/IO/FileStream.ab
r271 r289 93 93 End Select 94 94 95 This.handle=CreateFile(path .CharsAs PSTR,ac,sh,ByVal NULL,mo,op,0)95 This.handle=CreateFile(path As PSTR,ac,sh,ByVal NULL,mo,op,0) 96 96 If This.handle=INVALID_HANDLE_VALUE Then 97 97 'エラー処理
Note:
See TracChangeset
for help on using the changeset viewer.