/********************************************************
 * File: node4d.h
 * Created at Sun Jan 28 22:10:28 MSK 2001 by raorn // raorn@binec.ru
 *
 * $Id: node4d.h,v 1.4 2001/03/08 06:08:58 raorn Exp $
 *******************************************************/
#ifndef NODE4D_H
#define NODE4D_H

struct Node4D {
  ushort Zone, Net, Node, Point;
};

bool Parse4D(uchar * buf, struct Node4D *node);
bool Parse4DTemplate(uchar * buf, struct Node4D *node, struct Node4D *tpl);
void Copy4D(struct Node4D *node1, struct Node4D *node2);
int Compare4D(struct Node4D *node1, struct Node4D *node2);
void Print4D(struct Node4D *n4d, uchar * dest, size_t len);

#endif


syntax highlighted by Code2HTML, v. 0.9.1