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.

29 lines
579 B

  1. #include <nt.h>
  2. #include <ntrtl.h>
  3. #include <nturtl.h>
  4. #include <excpt.h>
  5. #include <stdio.h>
  6. #include <limits.h>
  7. #include <ntddkbd.h>
  8. #include <ntddmou.h>
  9. #include <string.h>
  10. #include <ntstatus.h>
  11. #include <windows.h>
  12. #include <ntddvdeo.h>
  13. #include <shellapi.h>
  14. #include <shlobj.h>
  15. #include <shlobjp.h>
  16. #include <commdlg.h>
  17. #define STRSAFE_NO_DEPRECATE
  18. #include <strsafe.h>
  19. #ifndef FIELDOFFSET
  20. #define FIELDOFFSET(type, field) ((int)(&((type NEAR*)1)->field)-1)
  21. #endif
  22. #ifndef ARRAYSIZE
  23. #define ARRAYSIZE(x) (sizeof(x)/sizeof(x[0]))
  24. #endif