mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
30 lines
646 B
C
30 lines
646 B
C
/*********************************************************************
|
|
* Copyright 1993, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
* $Header: /upc/share/CVS/netcdf-3/libncdap3/common34.c,v 1.29 2010/05/25 13:53:02 ed Exp $
|
|
*********************************************************************/
|
|
|
|
#include "rpc_includes.h"
|
|
|
|
|
|
int
|
|
rpc_serialize(MetaNode* node, NCBytes* buf)
|
|
{
|
|
switch(node->nodeclass) {
|
|
case NC_VAR:
|
|
|
|
|
|
|
|
|
|
|
|
case NC_FIELD:
|
|
case NC_GROUP:
|
|
case NC_ECONST:
|
|
case NC_VLEN:
|
|
case NC_OPAQUE:
|
|
case NC_ENUM:
|
|
case NC_COMPOUND:
|
|
default: return 0;
|
|
}
|
|
}
|