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.

71 lines
2.5 KiB

  1. /*==========================================================================;
  2. *
  3. * Copyright (C) 1996-1997 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: ddreg.h
  6. * Content: DirectDraw registry entries
  7. * History:
  8. * Date By Reason
  9. * ==== == ======
  10. * 16-aug-96 craige initial implementation
  11. * 06-jan-97 colinmc Initial AGP work
  12. * 01-feb-97 colinmc Bug 5457: Fixed Win16 lock problem causing hang
  13. * with mutliple AMovie instances on old cards
  14. *
  15. ***************************************************************************/
  16. #ifndef __DDRAWREG_INCLUDED__
  17. #define __DDRAWREG_INCLUDED__
  18. #define REGSTR_PATH_DDRAW "Software\\Microsoft\\DirectDraw"
  19. #define REGSTR_VAL_DDRAW_MODEXONLY "ModeXOnly"
  20. #define REGSTR_VAL_DDRAW_EMULATIONONLY "EmulationOnly"
  21. #define REGSTR_VAL_DDRAW_SHOWFRAMERATE "ShowFrameRate"
  22. #define REGSTR_VAL_DDRAW_ENABLEPRINTSCRN "EnablePrintScreen"
  23. #define REGSTR_VAL_DDRAW_DISABLEWIDERSURFACES "DisableWiderSurfaces"
  24. /*
  25. * This one is checked in DirectDrawMsg
  26. */
  27. #define REGSTR_VAL_DDRAW_DISABLEDIALOGS "DisableDialogs"
  28. #define REGSTR_VAL_DDRAW_NODDSCAPSINDDSD "DisableDDSCAPSInDDSD"
  29. #define REGSTR_VAL_DDRAW_FORCEAGPSUPPORT "ForceAGPSupport"
  30. #define REGSTR_VAL_DDRAW_AGPPOLICYMAXPAGES "AGPPolicyMaxPages"
  31. #define REGSTR_VAL_DDRAW_AGPPOLICYMAXBYTES "AGPPolicyMaxBytes"
  32. #define REGSTR_VAL_DDRAW_AGPPOLICYCOMMITDELTA "AGPPolicyCommitDelta"
  33. #define REGSTR_VAL_DDRAW_DISABLEAGPSUPPORT "DisableAGPSupport"
  34. #define REGSTR_VAL_DDRAW_DISABLEMMX "DisableMMX"
  35. #define REGSTR_VAL_DDRAW_FORCEREFRESHRATE "ForceRefreshRate"
  36. #define REGSTR_VAL_DDRAW_LOADDEBUGRUNTIME "LoadDebugRuntime"
  37. #ifdef WIN95
  38. #define REGSTR_KEY_RECENTMONITORS "MostRecentMonitors"
  39. #define REGSTR_VAL_DDRAW_MONITORSORDER "Order"
  40. #endif
  41. #ifdef DEBUG
  42. #define REGSTR_VAL_DDRAW_DISABLENOSYSLOCK "DisableNoSysLock"
  43. #define REGSTR_VAL_DDRAW_FORCENOSYSLOCK "ForceNoSysLock"
  44. #endif /* DEBUG */
  45. #define REGSTR_VAL_DDRAW_DISABLEINACTIVATE "DisableInactivate"
  46. #define REGSTR_KEY_GAMMA_CALIBRATOR "GammaCalibrator"
  47. #define REGSTR_VAL_GAMMA_CALIBRATOR "Path"
  48. #define REGSTR_KEY_APPCOMPAT "Compatibility"
  49. #define REGSTR_KEY_LASTAPP "MostRecentApplication"
  50. #define REGSTR_VAL_DDRAW_NAME "Name"
  51. #define REGSTR_VAL_DDRAW_APPID "ID"
  52. #define REGSTR_VAL_DDRAW_FLAGS "Flags"
  53. #define REGSTR_VAL_D3D_USENONLOCALVIDMEM "UseNonLocalVidMem"
  54. #define REGSTR_VAL_DDRAW_ENUMSECONDARY "EnumerateAttachedSecondaries"
  55. #endif