blob: 3979d78e7dbf2f61d8a9702ab3eac6d72d90cbc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*******************************************************************
parse a @STRUCTNAME@ structure
********************************************************************/
BOOL @FUNCNAME@(char *desc, io_struct *ps, int depth,
@STRUCTNAME@ *il, unsigned flags)
{
io_debug(ps, depth, desc, "@FUNCNAME@");
depth++;
#if 0
if (UNMARSHALLING(ps)) {
ZERO_STRUCTP(il);
}
#endif
/* parse the scalars */
|