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.

34 lines
1.3 KiB

  1. //---------------------------------------------------------------------------
  2. // StdAfx.h - defines precompiled hdr set
  3. //---------------------------------------------------------------------------
  4. #ifndef _STDAFX_H_
  5. #define _STDAFX_H_
  6. //---------------------------------------------------------------------------
  7. #define _iswupper(_c) ( iswctype(_c,_UPPER) )
  8. #define _iswlower(_c) ( iswctype(_c,_LOWER) )
  9. #define _iswdigit(_c) ( iswctype(_c,_DIGIT) )
  10. #define _iswxdigit(_c) ( iswctype(_c,_HEX) )
  11. //---------------------------------------------------------------------------
  12. #include <wchar.h>
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <io.h>
  16. //---------------------------------------------------------------------------
  17. #define STRICT
  18. #define _ATL_NO_ATTRIBUTES
  19. //---------------------------------------------------------------------------
  20. #ifndef _WIN32_WINNT
  21. #define _WIN32_WINNT 0x0400
  22. #endif
  23. #include <windows.h>
  24. //---------------------------------------------------------------------------
  25. #include "autos.h"
  26. #include "log.h"
  27. #include "errors.h"
  28. #include "utils.h"
  29. //---------------------------------------------------------------------------
  30. #include <atlbase.h>
  31. //---------------------------------------------------------------------------
  32. #endif //_STDAFX_H_
  33. //---------------------------------------------------------------------------