Files
sics/xytable.i
2000-02-07 10:38:55 +00: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;