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.

24 lines
653 B

  1. //*******************************************************************************************
  2. //
  3. // Filename : Pch.h
  4. //
  5. // Common header file
  6. //
  7. // Copyright (c) 1994 - 1996 Microsoft Corporation. All rights reserved
  8. //
  9. //*******************************************************************************************
  10. #define STRICT
  11. #include <windows.h>
  12. #include <windowsx.h>
  13. #include <shlobj.h>
  14. #include <shlobjp.h>
  15. #include <shlguid.h>
  16. #include <shlwapi.h>
  17. #include <shfusion.h>
  18. #define ARRAYSIZE(a) (sizeof(a)/sizeof(a[0]))
  19. #define FIELDOFFSET(type, field) ((int)(&((type NEAR*)1)->field)-1)
  20. #define SIZEOF(a) sizeof(a)