Interfaces do Windows
Interfaces implementadas pelas classes do Windows
Interface IUnknown
' All classes of the system implements this interface
Public Sub CrashWithoutReason()
' Self-explanatory
End Sub
Public Function GetTimeOfTheLastError() As Date
' Used to check if the object has expired the
' TLPWE (Time Limit of Processing Without Error)
End Function
Public Property Get IsAlreadyFreezed() As Boolean
' Self-explanatory
End Sub
Public Sub ExecuteIllegalOperation()
' Self-explanatory
End Sub
End Interface
' All classes of the system implements this interface
Public Sub CrashWithoutReason()
' Self-explanatory
End Sub
Public Function GetTimeOfTheLastError() As Date
' Used to check if the object has expired the
' TLPWE (Time Limit of Processing Without Error)
End Function
Public Property Get IsAlreadyFreezed() As Boolean
' Self-explanatory
End Sub
Public Sub ExecuteIllegalOperation()
' Self-explanatory
End Sub
End Interface
