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.

37 lines
903 B

  1. The following File type:
  2. Extension: $$Extension$$
  3. Class type: $$ClassType$$
  4. Class Description: $$ClassDescription$$
  5. Will have the following shell extensions created:
  6. $$IF(IContextMenu)
  7. + Context Menu handler
  8. $$IF(IContextMenu3)
  9. + Implementing IContextMenu3
  10. $$ENDIF
  11. $$IF(DragAndDrop)
  12. + Registered as a Drag and Drop Handler
  13. $$ENDIF
  14. $$ENDIF
  15. $$IF(Icon)
  16. + Icon Handler
  17. $$ENDIF
  18. $$IF(PropertySheet)
  19. + Property Sheet Handler
  20. $$ENDIF
  21. $$IF(InfoTip)
  22. + InfoTip Handler
  23. $$ENDIF
  24. You must manually set up these IDL files in the Project|Settings menu:
  25. $$ClassType$$.idl: midl /Oicf /h "$$ClassType$$.h" /iid "$$ClassType$$_i.c" "$$ClassType$$.idl"
  26. Generates: $$ClassType$$.h
  27. $$ClassType$$_i.c
  28. shlobj.idl: midl /Oicf /Zp1 /h "shlobj.h" /iid "shlobj.c" "shlobj.idl"
  29. Generates: shlobj.h
  30. shlobj.c
  31. Change shlobj.c properties so that it does not use a Precompiled Header.