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.

14 lines
269 B

  1. #pragma once
  2. //
  3. // These are the supported types
  4. //
  5. enum ObjectType
  6. {
  7. OT_User = 0,
  8. OT_Computer,
  9. OT_Group,
  10. OT_GroupSID
  11. };
  12. bool ObjectPicker( HWND hwndParent, ObjectType oType, PTCHAR szObjectName, ULONG uBufSize, PTCHAR szTargetName = NULL );