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.

23 lines
574 B

  1. #undef _WIN32_WINNT
  2. #define _WIN32_WINNT 0x0400
  3. #undef _WIN32_IE
  4. #define _WIN32_IE 0x0100
  5. #include <windows.h>
  6. #include <shfusion.h>
  7. #include <shlobj.h>
  8. #include <shlobjp.h>
  9. // Do the work in the lowest version number to ensure we are maximally
  10. // downlevel-compatible.
  11. int __cdecl main(int argc, char **argv)
  12. {
  13. // That's right, we call SHFusionInitialize with NULL. But that's
  14. // okay because this program doesn't actually run. We just want to
  15. // make sure it builds and links.
  16. //
  17. SHFusionInitialize(0);
  18. SHFusionUninitialize();
  19. return 0;
  20. }