Lines Matching refs:CurrentRegistrar
71 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in query_preselect_registration_for_ms_application() local
74 preselect = CurrentRegistrar->QueryPreselectMsWordRegistration(); in query_preselect_registration_for_ms_application()
76 preselect = CurrentRegistrar->QueryPreselectMsExcelRegistration(); in query_preselect_registration_for_ms_application()
78 preselect = CurrentRegistrar->QueryPreselectMsPowerPointRegistration(); in query_preselect_registration_for_ms_application()
98 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in Register4MsDoc() local
101 CurrentRegistrar->RegisterForMsWord(); in Register4MsDoc()
104 CurrentRegistrar->RegisterForMsExcel(); in Register4MsDoc()
107 CurrentRegistrar->RegisterForMsPowerPoint(); in Register4MsDoc()
110 CurrentRegistrar->RegisterAsHtmlEditorForInternetExplorer(); in Register4MsDoc()
114 CurrentRegistrar->RegisterAsDefaultHtmlEditorForInternetExplorer(); in Register4MsDoc()
115 CurrentRegistrar->RegisterAsDefaultShellHtmlEditor(); in Register4MsDoc()
132 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in Unregister4MsDoc() local
134 if ((Unregister & MSWORD) && CurrentRegistrar->IsRegisteredFor(MSWORD)) in Unregister4MsDoc()
135 CurrentRegistrar->UnregisterForMsWord(); in Unregister4MsDoc()
137 if ((Unregister & HTML_EDITOR) && CurrentRegistrar->IsRegisteredFor(HTML_EDITOR)) in Unregister4MsDoc()
138 CurrentRegistrar->UnregisterAsHtmlEditorForInternetExplorer(); in Unregister4MsDoc()
140 if ((Unregister & MSEXCEL) && CurrentRegistrar->IsRegisteredFor(MSEXCEL)) in Unregister4MsDoc()
141 CurrentRegistrar->UnregisterForMsExcel(); in Unregister4MsDoc()
143 if ((Unregister & MSPOWERPOINT) && CurrentRegistrar->IsRegisteredFor(MSPOWERPOINT)) in Unregister4MsDoc()
144 CurrentRegistrar->UnregisterForMsPowerPoint(); in Unregister4MsDoc()
146 …if ((Unregister & DEFAULT_HTML_EDITOR_FOR_IE) && CurrentRegistrar->IsRegisteredFor(DEFAULT_HTML_ED… in Unregister4MsDoc()
147 CurrentRegistrar->UnregisterAsDefaultHtmlEditorForInternetExplorer(); in Unregister4MsDoc()
149 …if ((Unregister & DEFAULT_SHELL_HTML_EDITOR) && CurrentRegistrar->IsRegisteredFor(DEFAULT_SHELL_HT… in Unregister4MsDoc()
150 CurrentRegistrar->UnregisterAsDefaultShellHtmlEditor(); in Unregister4MsDoc()
194 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in Unregister4MsDocAll() local
196 CurrentRegistrar->UnregisterAllAndCleanUpRegistry(); in Unregister4MsDocAll()
214 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in RepairRegister4MsDocSettings() local
216 CurrentRegistrar->RepairRegistrationState(); in RepairRegister4MsDocSettings()
231 RegistrarPtr CurrentRegistrar = CreateRegistrar(IsAllUserInstallation(handle), RegContext); in IsRegisteredFor() local
233 Registered = CurrentRegistrar->IsRegisteredFor(State); in IsRegisteredFor()