repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Listtree.mcc: implement proxying of DisplayHook
[AROS.git]
/
workbench
/
libs
/
rexxsupport
/
portnode.h
blob
d8a9e2ded02921c49eb23f79f86c6f69755f423c
1
#include <exec/ports.h>
2
#include <exec/libraries.h>
3
#include <rexx/storage.h>
4
5
struct
PortNodeData
6
{
7
struct
Node node
;
8
struct
RexxRsrc
*
self
;
9
struct
MsgPort
*
port
;
10
struct
List msgs
;
11
};
12
13
struct
PortNode
14
{
15
struct
RexxRsrc rsrc
;
16
struct
PortNodeData data
;
17
};
18
19
void
portcleanup
(
struct
Library
*,
struct
PortNode
*);