CredUIPromptForCredentials - creates and displays a configurable dialog box that accepts credentials information from a user. 예) #include #pragma comment(lib, "Credui.lib") ... TCHAR name[100] = _T("화면에 미리 표시될 이름"); TCHAR passwd[100] = _T("화면에 미리 표시될 비밀번호"); BOOL save = FALSE; CREDUI_INFO info; info.cbSize = sizeof(CREDUI_INFO); info.hwndParent = NULL; info.pszCaptionText = _T("제목!"); info.pszMe..