Leaked source code of windows server 2003
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.

61 lines
2.3 KiB

  1. //
  2. // EAPOL-related string definitions
  3. //
  4. #include "windows.h"
  5. #include "eluidlg.h"
  6. #include "eluiuser.h"
  7. /////////////////////////////////////////////////////////////////////////////
  8. //
  9. // Bitmap
  10. //
  11. BID_Dialer BITMAP DISCARDABLE "dialer.bmp"
  12. /////////////////////////////////////////////////////////////////////////////
  13. //
  14. // Dialog
  15. //
  16. DID_DR_DialerUD DIALOGEX 0, 0, 227, 186
  17. STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
  18. EXSTYLE WS_EX_CONTEXTHELP
  19. CAPTION "Connect %1"
  20. FONT 8, "MS Shell Dlg"
  21. BEGIN
  22. CONTROL 100,CID_DR_BM_Useless,"Static",SS_BITMAP | SS_SUNKEN,6,7,
  23. 214,85
  24. LTEXT "&User name:",CID_DR_ST_User,10,102,50,8
  25. EDITTEXT CID_DR_EB_User,62,99,154,14,ES_AUTOHSCROLL
  26. LTEXT "&Password:",CID_DR_ST_Password,10,120,50,8
  27. EDITTEXT CID_DR_EB_Password,62,117,154,14,ES_PASSWORD |
  28. ES_AUTOHSCROLL
  29. LTEXT "&Logon domain:",CID_DR_ST_Domain,10,138,50,8
  30. EDITTEXT CID_DR_EB_Domain,62,135,154,14,ES_UPPERCASE |
  31. ES_AUTOHSCROLL
  32. DEFPUSHBUTTON "OK",CID_DR_PB_DialConnect,59,160,50,14
  33. PUSHBUTTON "Cancel",CID_DR_PB_Cancel,127,160,50,14
  34. END
  35. /////////////////////////////////////////////////////////////////////////////
  36. //
  37. // String Table
  38. //
  39. STRINGTABLE DISCARDABLE
  40. BEGIN
  41. SID_AuthenticationFailed "Windows was unable to log you on to the network "
  42. SID_GetUserIdentity "Click here to select a certificate or other credentials for connection to the network "
  43. SID_GetUserNamePassword "Click here to enter your user name and password for the network "
  44. SID_InvokeInteractiveUI "Click here to process your logon information for the network "
  45. SID_NoCertificateFound "Windows was unable to find a certificate to log you on to the network "
  46. SID_AcquiringIdentity "Acquiring identity"
  47. SID_ContactingServer "Contacting authentication server"
  48. SID_UserResponse "Waiting for user response"
  49. SID_NoSmartCardReaderFound "Insert a smart-card reader to enable Windows to log you on to the network "
  50. END
  51. /////////////////////////////////////////////////////////////////////////////