-- LaurelBitmapDefs.mesa
-- last edited by Brotz, June 15, 1981 2:18 PM.

LaurelBitmapDefs: DEFINITIONS =

BEGIN

BitmapNotifyProc: TYPE = PROCEDURE;


SetBitmapNotifyProc: PROCEDURE [p: BitmapNotifyProc];
-- Registers the proceduere to be called whenever Laurel changes screen
-- boundaries.

DestroyDM: PROCEDURE;
-- Clears the displayed message area on the Laurel screen and makes Laurel
-- believe that no displayed message exists.

DestroyTOC: PROCEDURE;
-- Clears the table of contents area on the Laurel screen and makes Laurel
-- believe that no table of contents exists.

DMBitmapLocation: PROCEDURE RETURNS
[base: LONG POINTER, wordsPerLine, bitsX, bitsY: CARDINAL];
-- Returns the location of the bitmap in the displayed message area of the
-- Laurel screen.

TOCBitmapLocation: PROCEDURE RETURNS
[base: LONG POINTER, wordsPerLine, bitsX, bitsY: CARDINAL];
-- Returns the location of the bitmap in the table of contents area of the
-- Laurel screen.

END. -- of LaurelBitmapDefs --