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.

33 lines
1.1 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #include "profext.h"
  4. //
  5. // JonN 9/20/96
  6. // All of the strings, including IDS_PROFEXT_ERROR, IDS_PROFEXT_NOADAPTERS,
  7. // and the Configuration Manager string table, are in NETUI2.DLL.
  8. // See LMOBJ.STR.
  9. //
  10. #define VER_FILETYPE VFT_DLL
  11. #define VER_FILESUBTYPE VFT2_UNKNOWN
  12. #define VER_FILEDESCRIPTION_STR "Sample Property Provider"
  13. #define VER_INTERNALNAME_STR "profext.dll"
  14. #define VER_ORIGINALFILENAME_STR "PROFext.DLL"
  15. #include <common.ver>
  16. DLG_HWP_EXT DIALOG 18, 34, 212, 188
  17. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  18. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  19. CAPTION "Network"
  20. FONT 8, "MS Shell Dlg"
  21. BEGIN
  22. LTEXT "Select this check box to disable all network devices for this hardware profile.",
  23. IDC_DISABLE, 24, 24, 164, 20, WS_DISABLED
  24. LTEXT "Clear this check box to re-enable all network devices for this hardware profile.",
  25. IDC_ENABLE, 24, 46, 164, 20, WS_DISABLED
  26. AUTOCHECKBOX "&Network-disabled hardware profile", IDC_NONET, 24, 68, 164, 8
  27. LTEXT "", IDC_ERROR, 24, 88, 164, 24, NOT WS_VISIBLE
  28. END