diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2012-06-28 18:54:37 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2012-06-28 18:54:37 +0000 |
commit | 3af989edadb2d955e9d8260b55b2249abcaa84ef (patch) | |
tree | 2742aba6def1f4f534bfc73d1e614d49b69e8be1 /plugins/FileAsMessage/dialog.cpp | |
parent | 5afcb73210219d4d44ffb736067ee21cd866ca10 (diff) |
some signature fixes for 64bit
git-svn-id: http://svn.miranda-ng.org/main/trunk@673 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage/dialog.cpp')
-rw-r--r-- | plugins/FileAsMessage/dialog.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/FileAsMessage/dialog.cpp b/plugins/FileAsMessage/dialog.cpp index 5f6a6d5afd..f038b87a33 100644 --- a/plugins/FileAsMessage/dialog.cpp +++ b/plugins/FileAsMessage/dialog.cpp @@ -1130,11 +1130,9 @@ LRESULT CALLBACK ProgressWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa return CallSubclassed(hwnd, uMsg, wParam, lParam);
}
-LRESULT CALLBACK DialogProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
+INT_PTR CALLBACK DialogProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{
- struct FILEECHO *dat;
-
- dat = (struct FILEECHO*)GetWindowLongPtr(hDlg, GWLP_USERDATA);
+ struct FILEECHO *dat = (struct FILEECHO*)GetWindowLongPtr(hDlg, GWLP_USERDATA);
switch( uMsg )
{
case WM_INITDIALOG:
|