Leaked source code of windows server 2003
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.

35 lines
633 B

  1. #include <stdarg.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <assert.h>
  5. #include <iostream.h>
  6. #include <fstream.h>
  7. #include <afx.h>
  8. #include <afxtempl.h>
  9. #include <objbase.h>
  10. #include <afxwin.h>
  11. #include <afxole.h>
  12. #include <afxmt.h>
  13. #include <wchar.h>
  14. #include <process.h>
  15. #include <objbase.h>
  16. #include <initguid.h>
  17. #include "Configs.hpp"
  18. #include "Debug.hpp"
  19. Configs theConfigs;
  20. Configs::Configs()
  21. {
  22. m_pszOutputFilename = NULL;
  23. m_nMaxErrors = CFG_DEF_MAXERRORS;
  24. m_dwFlags = CFG_PRINT_LOGO;
  25. }
  26. Configs::~Configs()
  27. {
  28. if (m_pszOutputFilename != NULL)
  29. delete m_pszOutputFilename;
  30. }