2 * Copyright (c) 2000, Red Hat, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
12 * Written by DJ Delorie <dj@cygnus.com>
16 /* This handles the "other URL" option from the mirror site
29 /* private shared function, from site.cc */
30 void save_site_url (void);
33 check_if_enable_next (HWND h)
35 EnableWindow (GetDlgItem (h, IDOK), other_url ? 1 : 0);
41 eset (h, IDC_OTHER_URL, other_url);
42 check_if_enable_next (h);
48 other_url = eget (h, IDC_OTHER_URL, other_url);
52 dialog_cmd (HWND h, int id, HWND hwndctl, UINT code)
59 check_if_enable_next (h);
65 NEXT (IDD_S_LOAD_INI);
81 dialog_proc (HWND h, UINT message, WPARAM wParam, LPARAM lParam)
89 return HANDLE_WM_COMMAND (h, wParam, lParam, dialog_cmd);
95 do_other (HINSTANCE h)
98 rv = DialogBox (h, MAKEINTRESOURCE (IDD_OTHER_URL), 0, dialog_proc);
100 fatal (IDS_DIALOG_FAILED);
102 log (0, "site: %s", other_url);