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 - download
Index: ┃ T V

⟦f1be80cae⟧ TextFile

    Length: 1163 (0x48b)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Mac_Types;
with Communications;
with Mac_Text;
package Interchange is

-- R1000 RPC interchange package for Unix C

    procedure Put_Short (A_Connection : in out Communications.Connection;
                         Value : Mac_Types.Integer);
    procedure Get_Short (A_Connection : in out Communications.Connection;
                         Value : out Mac_Types.Integer);

    procedure Put_Int (A_Connection : in out Communications.Connection;
                       Value : Mac_Types.Longint);   -- 32 bit signed, 4 bytes
    procedure Get_Int (A_Connection : in out Communications.Connection;
                       Value : out Mac_Types.Longint);

    procedure Put_Bool (A_Connection : in out Communications.Connection;
                        Value : Boolean);
    procedure Get_Bool (A_Connection : in out Communications.Connection;
                        Value : out Boolean);

    procedure Put_Text (A_Connection : in out Communications.Connection;
                        Value : in Mac_Text.Text);
    procedure Get_Text (A_Connection : in out Communications.Connection;
                        Value : in out Mac_Text.Text);

end Interchange;