home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / popups / Docs / ExampleSrc / c / HandlerTab < prev    next >
Encoding:
Text File  |  1993-05-24  |  655 b   |  22 lines

  1. #include "Server.h"
  2. #include "PopUps.h"
  3.  
  4.  
  5. /*  Table of handler entries. Each one is a pointer to a handler_info struct
  6.  *  which contains the main data for that handler.
  7.  *  When wishing to link in your own handler, add it to the table as with
  8.  *  ProgInfo, etc. and see the individual .c files to see how they define
  9.  *  the relevant handler_info block, and the things that it references.
  10.  */
  11.  
  12. handler_info *handlertable[] =
  13. {
  14.   &HandlerInfo_Magnify,
  15.   &HandlerInfo_Print,
  16.   &HandlerInfo_ProgInfo,
  17.   &HandlerInfo_Report,
  18.   &HandlerInfo_SaveAs,
  19.   &HandlerInfo_WimpColour,
  20.   (handler_info *) 0                                      /* List terminator */
  21. };
  22.