Mercurial > hg > Papers > 2021 > ikki-sigos
comparison Paper/codes/wc/Wc.h @ 17:0d703e0d9781
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 05 May 2021 15:31:39 +0900 |
parents | 92975c2d26b3 |
children |
comparison
equal
deleted
inserted
replaced
16:b434a3dd23cd | 17:0d703e0d9781 |
---|---|
1 typedef struct Wc <> { | 1 typedef struct Wc <> { |
2 // all arguments names in this interfaces here | 2 // all arguments names in this interfaces here |
3 union Data* wc; // an implementation | 3 union Data* wc; // an implementation |
4 WcResult* result; | 4 Block * block; |
5 StdData * reuslt; | |
6 Ack * ack; | |
5 // codeGear entries of this interface | 7 // codeGear entries of this interface |
6 __code openFile(Impl* wc, __code next(...)); | 8 __code take(Impl* wc, Block *block,__code next(Ack *ack, ...),__code finish(StdData *result,...); |
7 __code countUp(Impl* wc, __code next(WcResult* result, ...)); | |
8 __code next(...); | |
9 } Wc; | 9 } Wc; |