00001 // help.h 00002 // 00003 // $Id: help.h,v 1.1 2003/01/22 19:58:25 sdennis Exp $ 00004 // 00005 00006 #define TOPIC_NAME_LEN 30 00007 00008 typedef struct 00009 { 00010 long pos; /* index into help file */ 00011 int len; /* length of help entry */ 00012 char topic[TOPIC_NAME_LEN + 1]; /* topic of help entry */ 00013 } help_indx; 00014