diff options
| author | George Hazan <ghazan@miranda.im> | 2020-07-09 17:30:23 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2020-07-09 17:30:23 +0300 |
| commit | cb881b6406f878235405ecd94caa93f7f841dcfe (patch) | |
| tree | 51cbc3263bbb01efb474cb5c647785254fada660 /include | |
| parent | 8a8d613373dc5a54dcf84025d53f5de4a8c4964f (diff) | |
fixes #2473 (Блокировка настроек от изменения)
остальное описано в задаче
Diffstat (limited to 'include')
| -rw-r--r-- | include/m_options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_options.h b/include/m_options.h index 99a8995b09..6bd7f96600 100644 --- a/include/m_options.h +++ b/include/m_options.h @@ -94,9 +94,9 @@ EXTERN_C MIR_APP_DLL(void) KillModuleOptions(HPLUGIN); // Opens the options dialog, optionally at the specified page
// Returns 0 on success, nonzero on failure
-EXTERN_C MIR_APP_DLL(int) Options_Open(const wchar_t *pszGroup, const wchar_t *pszPage, const wchar_t *pszTab, HPLUGIN);
+EXTERN_C MIR_APP_DLL(void) Options_Open(const wchar_t *pszGroup, const wchar_t *pszPage, const wchar_t *pszTab, HPLUGIN);
// Opens the options dialog, with only specified page
-EXTERN_C MIR_APP_DLL(HWND) Options_OpenPage(const wchar_t *pszGroup, const wchar_t *pszPage, const wchar_t *pszTab, HPLUGIN);
+EXTERN_C MIR_APP_DLL(void) Options_OpenPage(const wchar_t *pszGroup, const wchar_t *pszPage, const wchar_t *pszTab, HPLUGIN);
#endif //M_OPTIONS_H__
|
