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.

20 lines
543 B

  1. // FILE: testtune.h
  2. //
  3. // Stuff shared between hwxtest and hwxtune. Nothing else should use this.
  4. //
  5. // Constants
  6. //
  7. // Max alternates in alt list.
  8. #define ALT_MAX 10
  9. // Size of box results structure with altlist included.
  10. #define SIZE_HWXRESULTS (sizeof(HWXRESULTS) + (ALT_MAX - 1) * sizeof(WCHAR))
  11. #define SIZE_BOXRESULTS (sizeof(BOXRESULTS) + (ALT_MAX - 1) * sizeof(SYV))
  12. // Max prompt characters allowed on a panel.
  13. #define MAX_PANEL_SIZE 128
  14. // Max prompt size for a whole file.
  15. #define MAX_FILE_PROMPT (64 * MAX_PANEL_SIZE)