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.

44 lines
599 B

  1. // Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*
  3. *
  4. * Module Name:
  5. *
  6. * stdafx.h
  7. *
  8. * Abstract:
  9. *
  10. * Common Header file for the my library components
  11. *
  12. * Author:
  13. *
  14. *
  15. * Environment:
  16. *
  17. * User Mode
  18. */
  19. #ifndef _stdafx_h_
  20. #define _stdafx_h_
  21. #include <nt.h>
  22. #include <ntrtl.h>
  23. #include <nturtl.h>
  24. #include <windows.h>
  25. #include <tchar.h>
  26. #include <string.h>
  27. #include <stdio.h>
  28. #include <time.h>
  29. #include <malloc.h>
  30. #include "conv.h"
  31. #define AssertFalse() ASSERT(FALSE)
  32. #ifdef DBG
  33. #define VERIFY(x) ASSERT(x)
  34. #else
  35. #define VERIFY(x) (x)
  36. #endif
  37. #endif // _stdafx_h_