Files
sics/xytable.i
T
2012-11-15 12:39:48 +11:00

18 lines
564 B
OpenEdge ABL

/*----------------------------------------------------------------------
Internal data structures for the XYTable class. Do not modify
------------------------------------------------------------------------*/
typedef struct {
float x;
float y;
} TableEntry, *pTableEntry;
typedef struct __XYTABLE {
pObjectDescriptor pDes;
int iList;
int iCount;
}XYTable;