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.

29 lines
980 B

  1. // Microsoft Windows
  2. // Copyright (C) Microsoft Corporation, 1997-2000
  3. //+--------------------------------------------------------------------------
  4. //
  5. // Function: CHOOSER2_PickTargetComputer
  6. //
  7. // Synopsis: Bring up a standard dialog which allows users to
  8. // select a target computer.
  9. //
  10. // Arguments: pbstrTargetComputer - pointer to return value
  11. //
  12. // Returns: true -> OK, false -> Cancel
  13. //
  14. // History: 12-06-1999 JonN Created
  15. //
  16. //---------------------------------------------------------------------------
  17. #define IDD_CHOOSER2 5000
  18. #define IDC_CHOOSER2_RADIO_LOCAL_MACHINE 5001
  19. #define IDC_CHOOSER2_RADIO_SPECIFIC_MACHINE 5002
  20. #define IDC_CHOOSER2_EDIT_MACHINE_NAME 5003
  21. #define IDC_CHOOSER2_BUTTON_BROWSE_MACHINENAMES 5004
  22. bool CHOOSER2_PickTargetComputer(
  23. IN HINSTANCE hinstance,
  24. IN HWND hwndParent,
  25. OUT BSTR* pbstrTargetComputer );