16 lines
535 B
OpenEdge ABL
16 lines
535 B
OpenEdge ABL
|
|
/*---------------------------------------------------------------------------
|
|
C O S T A
|
|
Internal data structures for the command stack.
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
|
/*------------------------------------------------------------------------*/
|
|
typedef struct __costa {
|
|
int iLock;
|
|
int iList;
|
|
int iMaxSize;
|
|
int iCount;
|
|
} Costa;
|
|
|