Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
861 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. digestui.hxx
  5. Abstract:
  6. This file contains definitions for digestui.cxx
  7. Authentication UI for digest sspi package.
  8. Author:
  9. Adriaan Canter (adriaanc) 01-Aug-1998
  10. --*/
  11. #ifndef DIGESTUI_HXX
  12. #define DIGESTUI_HXX
  13. #define MAX_LOGIN_TEXT 300
  14. typedef struct _DigestDlgParams
  15. {
  16. LPSTR szCtx;
  17. LPSTR szHost;
  18. LPSTR szRealm;
  19. LPSTR szUser;
  20. LPSTR szNonce;
  21. LPSTR szCNonce;
  22. CCredInfo *pInfoIn;
  23. CCredInfo *pInfoOut;
  24. }DigestDlgParams, *PDigestDlgParams;
  25. extern HANDLE hDigest;
  26. DWORD DigestErrorDlg(LPSTR szCtx, LPSTR szHost, LPSTR szRealm,
  27. LPSTR szUser, LPSTR szNonce, LPSTR szCNonce, CCredInfo *pInfoIn,
  28. CCredInfo **ppInfoOut, HWND hWnd);
  29. INT_PTR CALLBACK DigestAuthDialogProc(HWND hwnd,UINT msg, WPARAM wparam, LPARAM lparam);
  30. #endif // DIGESTUI_HXX
  31.