diff options
author | George Hazan <ghazan@miranda.im> | 2019-07-24 12:45:36 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-07-24 12:45:36 +0300 |
commit | 30dad0388a14244ef9b06afc113085f6a49bcbb8 (patch) | |
tree | ea929713b37ab4a0e91d275f6c376b53a03e0c94 /include/m_utils.h | |
parent | 3abaf1281dee362d493147e40fa3c5a2b924effe (diff) |
warning fixes
Diffstat (limited to 'include/m_utils.h')
-rw-r--r-- | include/m_utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_utils.h b/include/m_utils.h index 70be2f654a..e287a89975 100644 --- a/include/m_utils.h +++ b/include/m_utils.h @@ -407,9 +407,9 @@ struct ENTER_STRING #define MS_UTILS_ENTERSTRING "Utils/EnterString"
-__forceinline BOOL EnterString(ENTER_STRING *pForm)
+__forceinline INT_PTR EnterString(ENTER_STRING *pForm)
{
- return (BOOL)CallService(MS_UTILS_ENTERSTRING, 0, (LPARAM)pForm);
+ return CallService(MS_UTILS_ENTERSTRING, 0, (LPARAM)pForm);
}
#endif // M_UTILS_H__
|