home *** CD-ROM | disk | FTP | other *** search
- /********************
- Slide ADT Headers
- ********************/
-
- #include "Glove.h"
-
- /*** Constant Definitions ***/
-
- #define RECENTLENGTH 13 /* Equal to (((PACKETSIZE + 1) * 2) - 1) */
-
- /*** Type and Structure Definitions ***/
-
- typedef struct recent {
- char Items[RECENTLENGTH];
- int Front;
- } RecentType;
-
- /*** Function Prototypes ***/
- void InitRecent();
- void AddToRecent(char newItem);
- void RecentToGlove(GloveState *s);
- void DumpRecent();
-