home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / him / hm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-09-15  |  1.4 KB  |  63 lines

  1. #ifndef HIMHMH
  2. #define HIMHMH 1
  3.  
  4. #ifdef AUTODOC
  5.  
  6. Include File: hm.h
  7.  
  8. Description: 
  9.  
  10. Header file for Help Manager (hm) module of HIM (tm).
  11.  
  12. #endif
  13. /*
  14.  *
  15.  *   Copyright 1988  Allsoft (tm)
  16.  *   100 Calle Playa Del Sol NE
  17.  *   Albuquerque, NM  87109
  18.  *
  19.  *   ALL RIGHTS RESERVED.
  20.  *
  21.  *   Unauthorized distribution, adaptation or use may be 
  22.  *   subject to civil and criminal penalties.
  23.  *
  24.  */
  25. /********** Filled by Polytron Version Control System **********
  26.  
  27. $Author:   james borders  $
  28.  
  29. $Date:   07 May 1988 16:34:42  $
  30.  
  31. $Revision:   1.0  $
  32.  
  33. $Log:   D:/C/FMLIB/HM/VCS/HM.H  $
  34.    
  35.       Rev 1.0   07 May 1988 16:34:42   james borders
  36.    Initial revision.
  37.  
  38. ****************************************************************/
  39.  
  40. /* Error Codes */
  41.  
  42. #define HMMAERROR       -1      /* memory allocation error */
  43. #define HMFOERROR       -2      /* file open error */
  44. #define HMFCERROR       -3      /* file close error */
  45. #define HMFRERROR       -4      /* file read error */
  46. #define HMFWERROR       -5      /* file write error */
  47.  
  48.  
  49. /* Routine Declarations */
  50.  
  51. /*global*/  int hminit(char *,int ,int ,int ,int ,int );
  52. /*global*/  int hmterm(void);
  53. /*global*/  int hmscontext(char *);
  54. /*global*/  char *hmgcontext(void);
  55. /*global*/  int hmhelp(void);
  56. /*global*/  int hmpush(char *);
  57. /*global*/  void hmpop(void);
  58. /*global*/  int hbldhlp(void);
  59. /*global*/  FILE *hmopenpfile(char *);
  60.  
  61. #endif  /* HIMHMH */
  62.  
  63.