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.

23 lines
347 B

  1. #ifndef _CONFIGS_HPP
  2. #define _CONFIGS_HPP
  3. #define CFG_PRINT_LOGO 0x01
  4. #define CFG_PRINT_TREE 0x02
  5. #define CFG_PRINT_NODE 0x04
  6. #define CFG_VERB_ERROR 0x08
  7. #define CFG_VERB_WARNING 0x10
  8. #define CFG_DEF_MAXERRORS 10
  9. class Configs
  10. {
  11. public:
  12. LPSTR m_pszOutputFilename;
  13. int m_nMaxErrors;
  14. DWORD m_dwFlags;
  15. Configs();
  16. ~Configs();
  17. };
  18. #endif