home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d1xx
/
d111
/
amyload.lha
/
AmyLoad
/
findwindownode.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-11-15
|
455b
|
26 lines
#include <intuition/intuition.h>
#include "execdef.h"
#include "intuidef.h"
#include "windownode.h"
#include "FindWindowNode.proto"
extern MinList windowList;
WindowNode *
FindWindowNode(window)
Window *window;
{
WindowNode *node;
for (node = (WindowNode *)windowList.mlh_Head;
node->node.mln_Succ;
node = (WindowNode *)node->node.mln_Succ)
{
if (node->window == window)
return node;
}
return NULL;
}