diff options
| author | Robert Pösel <robyer@seznam.cz> | 2012-11-05 21:11:48 +0000 |
|---|---|---|
| committer | Robert Pösel <robyer@seznam.cz> | 2012-11-05 21:11:48 +0000 |
| commit | 048aaf0c4e77402adf584e3318e5aae6f1cdd749 (patch) | |
| tree | def343da80e282ae43164e45e672a1386db66546 /plugins/!NotAdopted/Xfire/xfiretest/passworddialog.cpp | |
| parent | 35a9af527f9b7ec35e81455784cd0a795be910c5 (diff) | |
XFire adoption (crashes on login, no 64bit)
git-svn-id: http://svn.miranda-ng.org/main/trunk@2212 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/Xfire/xfiretest/passworddialog.cpp')
| -rw-r--r-- | plugins/!NotAdopted/Xfire/xfiretest/passworddialog.cpp | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/plugins/!NotAdopted/Xfire/xfiretest/passworddialog.cpp b/plugins/!NotAdopted/Xfire/xfiretest/passworddialog.cpp deleted file mode 100644 index 7b2202c24f..0000000000 --- a/plugins/!NotAdopted/Xfire/xfiretest/passworddialog.cpp +++ /dev/null @@ -1,59 +0,0 @@ -//fürs passwort dialog - dufte
-
-#include "stdafx.h"
-#include "passworddialog.h"
-
-static char nick[255];
-BOOL usenick=FALSE;
-
-BOOL CALLBACK DlgPWProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
-{
- static char* pw[255];
- switch (msg)
- {
- case WM_CLOSE:
- {
- GetDlgItemTextA(hwndDlg,IDC_PWSTRING,(LPSTR)pw,254);
- if(usenick)
- GetDlgItemTextA(hwndDlg,IDC_PWNICK,(LPSTR)nick,254);
- EndDialog(hwndDlg,(INT_PTR)pw);
- break;
- }
- case WM_INITDIALOG:
- {
- TranslateDialogDefault(hwndDlg);
- //passwort und nick leeren
- pw[0]=0;
- nick[0]=0;
- SendMessage(hwndDlg,WM_SETICON, (WPARAM)false, (LPARAM)LoadIcon(hinstance, MAKEINTRESOURCE(IDI_TM)));
- if(!usenick)
- EnableWindow(GetDlgItem(hwndDlg,IDC_PWNICK),FALSE);
-
- return TRUE;
- }
- case WM_COMMAND:
- {
- if(LOWORD(wParam) == IDC_BTN4) {
- SendMessage(hwndDlg,WM_CLOSE,0,0);
- }
- break;
- }
- }
- return FALSE;
-}
-
-void ShowPasswordDialog(char*pw,char*mynick) {
- if(mynick!=NULL)
- {
- usenick=TRUE;
- }
- else
- usenick=FALSE;
-
- char* npw = (char*)DialogBox(hinstance,MAKEINTRESOURCE(IDD_PWDLG),NULL,DlgPWProc);
- strcpy(pw,npw);
- if(mynick)
- {
- strcpy(mynick,(char*)nick);
- }
-}
\ No newline at end of file |
