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.

76 lines
2.5 KiB

  1. ;*****************************************************************************
  2. ; FILE: selfreg.inx
  3. ;
  4. ; DESCRIPTION:
  5. ; This file will register the COM objects associated with the
  6. ; Theme UI API, which is exposed via an Object Model.
  7. ;
  8. ; BryanSt 4/4/2000 (Bryan Starbuck)
  9. ; Copyright (C) Microsoft Corp 2000-2000. All rights reserved.
  10. ;*****************************************************************************
  11. [Version]
  12. Signature="$CHICAGO$"
  13. AdvancedINF=2.0
  14. [DLL_RegInstall]
  15. ComponentName=Starbuck.Toys
  16. ComponentVersion=1
  17. AdvOptions=36
  18. AddReg=AddRegSection
  19. RequiredEngine=SETUPAPI,%ERR_NOSETUPAPI%
  20. [DLL_RegUnInstall]
  21. ComponentName=Starbuck.Toys
  22. AdvOptions=260
  23. RequiredEngine=SETUPAPI,%ERR_NOSETUPAPI%
  24. [AddRegSection]
  25. ; Non-Automation COM objects
  26. HKCR,"CLSID\%CLSID_ImageConverter%",,,"%DESC_ImageConverter%"
  27. HKCR,"CLSID\%CLSID_ImageConverter%\DefaultIcon",,%RES%,"%_SYS_MOD_PATH%,7"
  28. HKCR,"CLSID\%CLSID_ImageConverter%\%IPS%",,%RES%,"%_SYS_MOD_PATH%"
  29. HKCR,"CLSID\%CLSID_ImageConverter%\%IPS%","ThreadingModel",,"Apartment"
  30. ; Add Context Menu Handler
  31. HKCR,"Paint.Picture\ShellEx\ContextMenuHandlers\%CLSID_ImageConverter%","",,""
  32. ;HKCR,"giffile\ShellEx\ContextMenuHandlers\%CLSID_ImageConverter%","",,""
  33. HKCR,"jpegfile\ShellEx\ContextMenuHandlers\%CLSID_ImageConverter%","",,""
  34. HKCR,"pngfile\ShellEx\ContextMenuHandlers\%CLSID_ImageConverter%","",,""
  35. HKCR,"TIFImage.Document\ShellEx\ContextMenuHandlers\%CLSID_ImageConverter%","",,""
  36. ; FEATURE: We turn on AutoComplete in the cmd.exe window. Feature owner: GRaiz
  37. ; Spec on: http://windowsclient/ux/uxctrl/new_features.htm
  38. HKLM,"SOFTWARE\Microsoft\Command Processor","CompletionChar",%REGDW%,0x00000009
  39. [Strings]
  40. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  41. ; Do not localize these
  42. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  43. RES= 0x00020000
  44. IPS="InProcServer32"
  45. ; (REG_EXPAND_SZ << 16)
  46. REGEXSZ=0x00020000
  47. ; (REG_DWORD << 16)
  48. REGDW=0x00010001
  49. CLSID_ImageConverter = "{8D029AEC-E412-4948-84B5-699A740946AE}"
  50. DESC_ImageConverter = "Starbuck Image Converter"
  51. CATID_SafeForInitializing = "{7DD95801-9882-11CF-9FA9-00AA006C42C4}"
  52. CATID_SafeForScripting = "{7DD95802-9882-11CF-9FA9-00AA006C42C4}"
  53. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  54. ; Localize These...
  55. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  56. LANGUAGE_ID_CURRENT = "0409"
  57. ERR_NOSETUPAPI = "Internet Explorer 4.0 needs to be installed for this product to be installed."