home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d111
/
amyload
/
setwindowinfo.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-11-15
|
559b
|
23 lines
#include <intuition/intuition.h>
#include "execdef.h"
#include "intuidef.h"
#include "windowinfo.h"
#include "SetWindowInfo.proto"
void
SetWindowInfo(window)
register Window *window;
{
register WindowInfo *info;
info = WINDOWINFO(window);
info->leftedge = BORDERWIDTH;
info->rightedge = window->Width - BORDERWIDTH - 1;
info->width = window->Width - BORDERWIDTH * 2;
info->topedge = BORDERHEIGHT;
info->bottomedge = window->Height - BORDERHEIGHT - 1;
info->height = window->Height - BORDERHEIGHT * 2;
}