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.

45 lines
1.1 KiB

  1. /*
  2. Copyright (c) 1997, Microsoft Corporation, all rights reserved
  3. File:
  4. eap.rc
  5. Description:
  6. History:
  7. */
  8. #include <windows.h>
  9. #include "resource.h"
  10. IDR_EAPCFG REGISTRY DISCARDABLE "ceapcfg.rgs"
  11. IDD_DIALOG DIALOG DISCARDABLE 0, 0, 186, 61
  12. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  13. CAPTION "Sample EAP"
  14. FONT 8, "MS Shell Dlg"
  15. BEGIN
  16. DEFPUSHBUTTON "OK",IDOK,75,40,50,14
  17. PUSHBUTTON "Cancel",IDCANCEL,130,40,50,14
  18. LTEXT "User name:",IDC_STATIC,5,5,40,10
  19. LTEXT "Password:",IDC_STATIC,5,20,35,10
  20. EDITTEXT IDC_EDIT_NAME,50,5,130,12,ES_AUTOHSCROLL
  21. EDITTEXT IDC_EDIT_PASSWD,50,20,130,12,ES_PASSWORD |
  22. ES_AUTOHSCROLL
  23. END
  24. #ifndef APSTUDIO_INVOKED
  25. // NT-standard version information
  26. #include <ntverp.h>
  27. #define VER_FILETYPE VFT_DLL
  28. #define VER_FILESUBTYPE VFT2_UNKNOWN
  29. #define VER_FILEDESCRIPTION_STR "Remote Access PPP Sample EAP"
  30. #define VER_INTERNALNAME_STR "eap.dll"
  31. #define VER_ORIGINALFILENAME_STR "eap.dll"
  32. #endif