18 lines
564 B
OpenEdge ABL
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;
|
|
|