diff options
author | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-27 22:52:32 +0000 |
---|---|---|
committer | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-11-27 22:52:32 +0000 |
commit | 46879a24aa0e45ec0ea1ddf27f28ce68edd5e561 (patch) | |
tree | bd52507c2ef8398cfd12c74f9d573a468e5ee86c /BuddyExpectator/options.cpp | |
parent | cf83705a2e83691e6271fdffac93e0632fd301da (diff) |
another part of small project fixes
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@224 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'BuddyExpectator/options.cpp')
-rw-r--r-- | BuddyExpectator/options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BuddyExpectator/options.cpp b/BuddyExpectator/options.cpp index 6ebe7f3..d190cd5 100644 --- a/BuddyExpectator/options.cpp +++ b/BuddyExpectator/options.cpp @@ -91,7 +91,7 @@ void SavePopupOptions() /**
* Options panel function
*/
-static int CALLBACK OptionsFrameProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK OptionsFrameProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
@@ -291,7 +291,7 @@ static int CALLBACK OptionsFrameProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPA /**
* PopUp Options panel function
*/
-static int CALLBACK PopUpOptionsFrameProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK PopUpOptionsFrameProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
static int ChangeLock = 0;
switch (uMsg)
@@ -511,7 +511,7 @@ static int OptionsInit(WPARAM wParam, LPARAM lParam) return 0;
}
-BOOL CALLBACK UserinfoDlgProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam)
+INT_PTR CALLBACK UserinfoDlgProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM lparam)
{
switch (msg)
{
|