source: trunk/Include/Classes/ActiveBasic/Core/InterfaceInfo.ab@ 353

Last change on this file since 353 was 353, checked in by dai, 17 years ago

ActiveBasic.Core.InterfaceInfoクラスを追加(このクラスはコンパイラ内部で使う)

File size: 269 bytes
Line 
1Namespace ActiveBasic
2Namespace Core
3
4
5Class InterfaceInfo
6 ' No Inherits
7 __this As VoidPtr
8 __vtbl As VoidPtr
9Public
10 Sub ITest( pThis As VoidPtr, pVtbl As VoidPtr )
11 __this = pThis
12 __vtbl = pVtbl
13 End Sub
14End Class
15
16
17End Namespace
18End Namespace
Note: See TracBrowser for help on using the repository browser.