import cyrus-sasl-2.1.23
[cyrus-sasl.git] / mac / libdes / src / passwd_dlg.c
1 /*\r * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska H\9agskolan\r * (Royal Institute of Technology, Stockholm, Sweden).\r * All rights reserved.\r * \r * Redistribution and use in source and binary forms, with or without\r * modification, are permitted provided that the following conditions\r * are met:\r * \r * 1. Redistributions of source code must retain the above copyright\r *    notice, this list of conditions and the following disclaimer.\r * \r * 2. Redistributions in binary form must reproduce the above copyright\r *    notice, this list of conditions and the following disclaimer in the\r *    documentation and/or other materials provided with the distribution.\r * \r * 3. All advertising materials mentioning features or use of this software\r *    must display the following acknowledgement:\r *      This product includes software developed by the Kungliga Tekniska\r *      H\9agskolan and its contributors.\r * \r * 4. Neither the name of the Institute nor the names of its contributors\r *    may be used to endorse or promote products derived from this software\r *    without specific prior written permission.\r * \r * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND\r * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE\r * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r * SUCH DAMAGE.\r */\r\r/* passwd_dlg.c - Dialog boxes for Windows95/NT\r * Author:     J\9argen Karlsson - d93-jka@nada.kth.se\r * Date:  June 1996\r */\r\r#ifdef HAVE_CONFIG_H\r#include <config.h>\rRCSID("$Id: passwd_dlg.c,v 1.2 2001/12/04 02:06:30 rjs3 Exp $");\r#endif\r\r#ifdef WIN32   /* Visual C++ 4.0 (Windows95/NT) */\r#include <Windows.h>\r#include "passwd_dlg.h"\r#include "Resource.h"\r#define passwdBufSZ 64\r\rchar passwd[passwdBufSZ];\r\rBOOL CALLBACK\rpwd_dialog_proc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)\r{\r    switch(uMsg)\r    {\r    case WM_COMMAND: \r  switch(wParam)\r {\r      case IDOK:\r         if(!GetDlgItemText(hwndDlg,IDC_PASSWD_EDIT, passwd, passwdBufSZ))\r          EndDialog(hwndDlg, IDCANCEL);\r  case IDCANCEL:\r     EndDialog(hwndDlg, wParam);\r            return TRUE;\r       }\r    }\r    return FALSE;\r}\r\r\r/* return 0 if ok, 1 otherwise */\rint\rpwd_dialog(char *buf, int size)\r{\r    int i;\r    HWND wnd = GetActiveWindow();\r    HANDLE hInst = GetModuleHandle("des");\r    switch(DialogBox(hInst,MAKEINTRESOURCE(IDD_PASSWD_DIALOG),wnd,pwd_dialog_proc))\r    {\r    case IDOK:\r strcpy_truncate(buf, passwd, size);\r    memset (passwd, 0, sizeof(passwd));\r    return 0;\r    case IDCANCEL:\r    default:\r      memset (passwd, 0, sizeof(passwd));\r    return 1;\r    }\r}\r\r#endif /* WIN32 */\r