home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR9 / WDOS0793.ZIP / DUDLEY.ZIP / MAKEMSG.H < prev    next >
C/C++ Source or Header  |  1993-05-28  |  338b  |  19 lines

  1.  /* for "Preparing a C application for non-English
  2.  * speaking users"
  3.  * William F. Dudley Jr.
  4.  */
  5.  
  6. #define MAX_MSGS 10000
  7. #if !MAIN
  8. extern
  9. #endif
  10.         struct msg {
  11.                 char *s;
  12.                 unsigned index;
  13.             } txt[
  14. #if MAIN
  15.                   MAX_MSGS
  16. #endif
  17.                             ];
  18.  
  19.