home *** CD-ROM | disk | FTP | other *** search
- /*------------------------- SHARLIST.H -------------------------*/
- /* */
- /* This file contains definitions used for the list library */
- /* that are needed both internally by the library and also */
- /* by the user of the library. */
- /* */
- /* Copyright 1990 Dan Vogel & David Bernazzani */
- /* */
- /* */
- /* Revision History */
- /* */
- /* 03/05/90 DCV Release. */
- /* */
- /*--------------------------------------------------------------*/
-
- #include "USERWIND.H" /* Window Library Definitions */
-
- /* Error Codes */
-
- #define BAD_LINK_PTR -11 /* Pointer to list link is bad. */
- #define BAD_HEAD_PTR -12 /* Pointer to list head is bad. */
-
- #define UNABLE_TO_ALLOCATE_LINK -21 /* Out of heap for link allocation. */
- #define UNABLE_TO_ALLOCATE_LIST -22 /* Out of heap for head allocation. */
- #define LIST_TOO_SHORT -23 /* List shorter than needed item #. */
- #define LIST_ITEM_NOT_FOUND -24 /* Searched item not found in list. */
-
-