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.

39 lines
932 B

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corp., 1991 **/
  4. /**********************************************************************/
  5. /*
  6. focus.hxx
  7. Common dialog for setting the app's focus
  8. FILE HISTORY:
  9. chuckc 14-Jun-91 split off from adminapp.hxx
  10. YiHsinS 24-Feb-93 Added more selection type
  11. */
  12. #ifndef _FOCUS_HXX_
  13. #define _FOCUS_HXX_
  14. enum FOCUS_TYPE {
  15. FOCUS_SERVER,
  16. FOCUS_DOMAIN,
  17. FOCUS_NONE
  18. } ;
  19. enum SELECTION_TYPE {
  20. SEL_DOM_ONLY,
  21. SEL_SRV_ONLY, // Expand domain the workstation is in
  22. SEL_SRV_AND_DOM,
  23. SEL_SRV_ONLY_BUT_DONT_EXPAND_DOMAIN, // Do not expand any domain
  24. SEL_SRV_EXPAND_LOGON_DOMAIN // Expand logon domain
  25. } ;
  26. enum FOCUS_CACHE_SETTING {
  27. FOCUS_CACHE_SLOW,
  28. FOCUS_CACHE_FAST,
  29. FOCUS_CACHE_UNKNOWN
  30. };
  31. #endif