Ejemplo n.º 1
0
        public static void ComUnregisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Unregister();
            ComUnregister(type, VvvRootKey.ProgId);
        }
Ejemplo n.º 2
0
        public static void ComRegisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Register();
            ComRegister(type, "VVV Sample ShellExtension (InfoTip)", VvvRootKey.ProgId);
        }
Ejemplo n.º 3
0
        public static void ComUnregisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Unregister();
            ComUnregister(type, "VVV ContextMenu (MMSF Sample)", VvvRootKey.ProgId);
        }
Ejemplo n.º 4
0
        public static void ComRegisterFunction(Type type)
        {
            Contract.Requires(type != null);

            VvvRootKey.Register();
            ComRegister(type, registryDescription, VvvRootKey.ProgId);
        }
Ejemplo n.º 5
0
 public static void ComUnregisterFunction(Type type)
 {
     VvvRootKey.Unregister();
     ComUnregister(type, "VVV ContextMenu (MMSF Sample)", VvvRootKey.ProgId);
 }
Ejemplo n.º 6
0
 public static void ComUnregisterFunction(Type type)
 {
     VvvRootKey.Unregister();
     ComUnregister(type, VvvRootKey.ProgId);
 }
Ejemplo n.º 7
0
 public static void ComRegisterFunction(Type type)
 {
     VvvRootKey.Register();
     ComRegister(type, "VVV Sample ShellExtension (InfoTip)", VvvRootKey.ProgId);
 }
Ejemplo n.º 8
0
 public static void ComUnregisterFunction(Type type)
 {
     ComUnregister(type, registryDescription, VvvRootKey.ProgId);
     VvvRootKey.Unregister();
 }
Ejemplo n.º 9
0
 public static void ComRegisterFunction(Type type)
 {
     VvvRootKey.Register();
     ComRegister(type, RegistryDescription, VvvRootKey.ProgId);
 }