home *** CD-ROM | disk | FTP | other *** search
-
- /*
- SendToBack FKey #8 -- Version 1.00 -- Nov 28, 1988
-
- Copyright (c) 1988 by Neal E. Trautman
-
- 'ShareWare' -- Please send $2 contribution to:
- Neal Trautman
- 1701 S.W. 42nd Street
- Fargo, ND 58103
-
- This FKey sends the FrontWindow to the back of the Window List.
- (Behind all other windows...)
- */
-
- main()
- {
- register WindowPtr win;
-
- win = FrontWindow();
- if ((win) && ((((WindowPeek)win)->goAwayFlag) ||
- (((WindowPeek)win)->windowKind != dialogKind)))
- SendBehind(win,0L);
- else
- SysBeep(2L);
- }
-