Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
347 B

  1. #ifndef FMTRES_DEFINED
  2. #define FMTRES_DEFINED
  3. /* used in fmtio.h and lsfd.h */
  4. enum fmtres /* Why did the formatter return? */
  5. {
  6. fmtrCompletedRun, /* no problems */
  7. fmtrExceededMargin, /* reached right margin */
  8. fmtrTab, /* reached tab */
  9. fmtrStopped
  10. };
  11. typedef enum fmtres FMTRES;
  12. #endif /* !FMTRES_DEFINED */