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.

30 lines
572 B

  1. #ifndef I_SHLWRAP_H_
  2. #define I_SHLWRAP_H_
  3. #if defined(_M_IX86) && !defined(WINCE)
  4. #define UNICODE_SHDOCVW
  5. #define POST_IE5_BETA
  6. #ifndef X_W95WRAPS_H_
  7. #define X_W95WRAPS_H_
  8. #include <w95wraps.h>
  9. #endif
  10. // Trident doesn't want certain system functions wrapped
  11. #undef TextOutW
  12. #undef ExtTextOutW
  13. #else
  14. // Manually enable wrapping for certain APIs
  15. // (JBEDA, via DINARTEM) We may want to take this ifdef out entirely so
  16. // that we always use shlwapi on AMD64/ia64
  17. #define ShellExecuteExW ShellExecuteExWrapW
  18. #endif
  19. #endif