Ignore:
Timestamp:
Oct 13, 2007, 2:11:22 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

FormatIntegerDを実装。
UnitTestの失敗時の表示を目立つようにした。
ArrayListを名前空間System.Collectionsに入れた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/basic/function.sbp

    r303 r355  
    10191019End Function
    10201020
     1021/*!
     1022@brief  ABオブジェクトを指すポインタをObject型へ変換。
     1023@author Egtra
     1024@date   2007/08/24
     1025@param[in]  p   COMインタフェースを指すポインタ
     1026@return Object参照型
     1027*/
    10211028Function _System_PtrObj(p As VoidPtr) As Object
    10221029    SetPointer(VarPtr(_System_PtrObj), p)
     1030End Function
     1031
     1032/*!
     1033@brief  IUnknownその他COMインタフェースを指すポインタをIUnknown参照型へ変換。
     1034@author Egtra
     1035@date   2007/09/24
     1036@param[in]  p   COMインタフェースを指すポインタ
     1037@return IUnknown参照型
     1038*/
     1039Function _System_PtrUnknown(p As VoidPtr) As IUnknown
     1040    SetPointer(VarPtr(_System_PtrUnknown), p)
    10231041End Function
    10241042
Note: See TracChangeset for help on using the changeset viewer.