/* A point type can be at least one of the following: */ enum PT_TYPE { PT_TYPE_STRING, PT_TYPE_REAL, PT_TYPE_INT32, }; /* A points value is stored in the following union: */ typedef union { ptreal r; int32 i; char *s; } PT_uVALUE; typedef PT_uVALUE *PT_pVALUE;
Copyright © 1995-2010 by Cogent Real-Time Systems, Inc. All rights reserved.