DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T V

⟦feb5c2138⟧ TextFile

    Length: 732 (0x2dc)
    Types: TextFile
    Names: »V«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

with Message;
package Mailbox is

    type Handle is private;

    procedure Open (Mailbox : Handle; For_User : String);

    procedure Close (Mailbox : Handle);

    type Message_Iterator is limited private;

    function Init (Mailbox : Handle) return Message_Iterator;
    function Done (Iter : Message_Iterator) return Boolean;
    function Value (Iter : Message_Iterator) return Message.Message_Type;
    procedure Next (Iter : Message_Iterator);

    procedure Add_Message (Mailbox : Handle; New_Message : Handle);

    procedure Delete_Message (Mailbox : Handle; Message_Number : Positive);

    Messgage_Not_Found : exception;

private
    type Handle is new Boolean;

    type Message_Iterator is new Boolean;

end Mailbox;