' Classes/System/misc.ab #ifndef __SYSTEM_MISC_AB__ #define __SYSTEM_MISC_AB__ #include Interface IObject End Interface Interface IAsyncResult ' Properties Function AsyncState() As *IObject Function AsyncWaitHandle() As WaitHandle Function CompletedSynchronously() As BOOL Function IsCompleted() As BOOL End Interface Interface IClonable ' Method Function Clone() As *IObject End Interface Interface IComparable ' Method Function CompareTo(ByRef obj As IObject) As Long End Interface Class EventArgs End Class #endif '__SYSTEM_MISC_AB__