home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------
- //
- // SuperCode (c) 1996 by T.Kühn
- //
- // Programmiersprache: ANSI-C
- // Projektstart: 12.7.94
- //
- // Modul: window.c
- //
- //-------------------------------------
-
-
-
- //-------------------------------------
- #include <pragma/intuition_lib.h>
-
- #include <Struct.h>
- //-------------------------------------
-
-
-
-
-
- //-------------------------------------
- void window_close(struct Window *win,struct PrefWin *pref)
- {
- if (pref)
- {
- pref->Xpos=win->LeftEdge;
- pref->Ypos=win->TopEdge;
- pref->WinW=win->Width;
- pref->WinH=win->Height;
- }
- ClearMenuStrip(win);
- CloseWindow(win);
- }
- //-------------------------------------
-
-