runtime/src/common/RTModule.i3


Copyright (C) 1994, Digital Equipment Corp.
This interface provides a safe interface to the runtime table of modules.

INTERFACE RTModule;

IMPORT RT0;

PROCEDURE Count (): CARDINAL;
returns the number of registered modules. They are indexed [0..Count-1].

PROCEDURE Get (m: CARDINAL): RT0.ModulePtr;
returns a pointer to the module information for module 'm'.

END RTModule.