diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-22 14:00:43 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-22 14:00:43 +0300 |
commit | 79742b2d021b99425d4c9ceac871deb6b8967cee (patch) | |
tree | 5359f8d0b4aa64a1e54ebc6436e9a367b4470e31 /plugins/NotesAndReminders/src/stdafx.h | |
parent | 11bd2b97b306e9df877f8adbc3fac971137c2bce (diff) |
fixes #1660 completely
Diffstat (limited to 'plugins/NotesAndReminders/src/stdafx.h')
-rw-r--r-- | plugins/NotesAndReminders/src/stdafx.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/NotesAndReminders/src/stdafx.h b/plugins/NotesAndReminders/src/stdafx.h index 504c5da958..58c27892ed 100644 --- a/plugins/NotesAndReminders/src/stdafx.h +++ b/plugins/NotesAndReminders/src/stdafx.h @@ -2,6 +2,7 @@ #include <windows.h> #include <commctrl.h> +#include <limits.h> #include <time.h> #include <richedit.h> @@ -52,7 +53,7 @@ struct CMPlugin : public PLUGIN<CMPlugin> extern void CreateMsgWindow(void); extern void DestroyMsgWindow(void); -void NewNote(int Ax, int Ay, int Aw, int Ah, char *Data, ULARGE_INTEGER *ID, BOOL Visible, BOOL bOnTop, int scrollV); +void NewNote(int Ax, int Ay, int Aw, int Ah, const char *pszText, ULARGE_INTEGER *ID, BOOL Visible, BOOL bOnTop, int scrollV); void LoadNotes(BOOL bIsStartup); void SaveNotes(void); void DeleteNotes(void); |