diff options
Diffstat (limited to 'ping/options.cpp')
-rw-r--r-- | ping/options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ping/options.cpp b/ping/options.cpp index 7da7639..cecc612 100644 --- a/ping/options.cpp +++ b/ping/options.cpp @@ -4,7 +4,7 @@ PingOptions options;
// main ping options
-static BOOL CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
HWND hw;
OPENFILENAME ofn = {0};
@@ -179,7 +179,7 @@ PINGLIST temp_list; PINGADDRESS add_edit_addr;
// host edit
-BOOL CALLBACK DlgProcDestEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
+INT_PTR CALLBACK DlgProcDestEdit(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
HWND hw;
int sel;
char *strptr;
@@ -313,7 +313,7 @@ BOOL Edit(HWND hwnd, PINGADDRESS &addr) { return FALSE;
}
// ping hosts list window
-static BOOL CALLBACK DlgProcOpts2(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK DlgProcOpts2(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
//OPENFILENAME ofn = {0};
HWND hw;
|