OLD | NEW |
1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
2 #include "PluginUserSettings.h" | 2 #include "PluginUserSettings.h" |
3 #include <algorithm> | 3 #include <algorithm> |
4 #include "PluginSettings.h" | 4 #include "PluginSettings.h" |
5 #include "PluginClient.h" | 5 #include "PluginClient.h" |
6 #include "PluginIniFileW.h" | 6 #include "PluginIniFileW.h" |
7 #include "PluginDictionary.h" | 7 #include "PluginDictionary.h" |
8 | 8 |
9 static const CString s_GetMessage = L"GetMessage"; | 9 static const CString s_GetMessage = L"GetMessage"; |
10 static const CString s_GetLanguageCount = L"GetLanguageCount"; | 10 static const CString s_GetLanguageCount = L"GetLanguageCount"; |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 CPluginClient::GetInstance()->ClearWhiteListCache(); | 328 CPluginClient::GetInstance()->ClearWhiteListCache(); |
329 } | 329 } |
330 } | 330 } |
331 else | 331 else |
332 return DISP_E_MEMBERNOTFOUND; | 332 return DISP_E_MEMBERNOTFOUND; |
333 | 333 |
334 return S_OK; | 334 return S_OK; |
335 } | 335 } |
336 | 336 |
337 | 337 |
OLD | NEW |