Changeset 355 for trunk/Include/basic/function.sbp
- Timestamp:
- Oct 13, 2007, 2:11:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/basic/function.sbp
r303 r355 1019 1019 End Function 1020 1020 1021 /*! 1022 @brief ABオブジェクトを指すポインタをObject型へ変換。 1023 @author Egtra 1024 @date 2007/08/24 1025 @param[in] p COMインタフェースを指すポインタ 1026 @return Object参照型 1027 */ 1021 1028 Function _System_PtrObj(p As VoidPtr) As Object 1022 1029 SetPointer(VarPtr(_System_PtrObj), p) 1030 End 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 */ 1039 Function _System_PtrUnknown(p As VoidPtr) As IUnknown 1040 SetPointer(VarPtr(_System_PtrUnknown), p) 1023 1041 End Function 1024 1042
Note:
See TracChangeset
for help on using the changeset viewer.