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 ComUnregisterFunction(Type type)
        {
            Contract.Requires(type != null);

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

            VvvRootKey.Register();
            ComRegister(type, "VVV Sample ShellExtension (InfoTip)", VvvRootKey.ProgId);
        }