home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / EXPENSE / CUSTDICT.H_ / CUSTDICT.H
Encoding:
Text File  |  1993-02-08  |  632 b   |  33 lines

  1. /************************************************************
  2.  
  3.     PROGRAM:    CUSTDICT.H
  4.  
  5.     PURPOSE:
  6.     
  7.         Header file for CUSTDICT.C
  8.  
  9.  
  10. ************************************************************/
  11.  
  12.  
  13. /* Global Variables */
  14. char    * szDescription =     "Custom Dictionary (Expense Report)";
  15. char    * rgszCustWords[] = 
  16.     {
  17.     "Taxi",
  18.     "Food",
  19.     "Flight",
  20.     "Hotel",
  21.     "Misc"
  22.     };
  23.  
  24. /* Constants */
  25. #define CUST_DICT_SIZE (sizeof(rgszCustWords)/sizeof(char *))
  26. #define cbMaxLen    256
  27.  
  28.  
  29. /* Prototypes */
  30. BOOL NEAR PASCAL FLookup(LPSTR);
  31. BOOL NEAR PASCAL FBestGuess(LPSTR, LPSYV);
  32. int  NEAR PASCAL GetDllDescription(LPSTR, int);
  33.