[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]


    NAME
        UnlockPubScreen -- Release lock on a public screen. (V36)

    SYNOPSIS
        UnlockPubScreen( Name, [Screen] )
                         A0    A1

        VOID UnlockPubScreen( ubyte *, struct screen * );

    FUNCTION
        Releases lock gotten by lockpubscreen().
        It is best to identify the locked public screen by
        the pointer returned from lockpubscreen().  to do this,
        supply a NULL 'Name' pointer and the screen pointer.

        In rare circumstances where it would be more convenient to pass
        a non-NULL pointer to the public screen name string, the
        'Screen' parameter is ignored.

    INPUTS
        Name = pointer to name of public screen.  If Name is NULL,
            then argument 'Screen' is used as a direct pointer to
            a public screen.
        screen = pointer to a public screen.  used only if name
            is NULL.  This pointer MUST have been returned
            by lockpubscreen().
            It is safe to call UnlockPubScreen() with NULL Name
            and screen (the function will have no effect).

    RESULT

    BUGS

    SEE ALSO
        lockpubscreen()