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
1.5 KiB

  1. Bug Notes
  2. Initialization is hard to follow
  3. Conditional statements for tests that could not possibly true.
  4. Invalid setting of flags
  5. Improperly initialized structures before calling SPI_GETHIGHCONTRAST
  6. Obsolete functions being used
  7. Non-NULL values passed to functions that require NULL values
  8. There was code that appended spaces to color scheme and then more code that removed the spaces - looked like 2 programmers worked on it.
  9. There were loops that would never execute.
  10. Incorrect array sizes passed to many, many functions
  11. Variables declared, initialized but never used
  12. HIGHCONTRAST and MOUSEKEYS did not have ??F_HOTKEYSOUND and ??F_CONFIRMHOTKEY flags set properly
  13. Functions exist that never get called
  14. Incorrect access rights specified when creating a registry key - system would not allow values to be set.
  15. Code fragments repeated throughout
  16. Repeated useless code: x = 5; x = 5;
  17. FilterKeys Slider controls were handled incorrectly - worked on Win95 by coincidence
  18. SPI_?ETKEYBOARDPREF is not on WinNT
  19. SPI_?ETHIGHCONTRAST is not on WinNT
  20. SPI_?ETSERIALKEYS is not on WinNT
  21. // NT doesn't support SSF_INDICATOR but it's not documented or exposed by this Applet.
  22. SOUNDSENTRY.iFSTextEffect is not supported on WinNT
  23. SOUNDSENTRY.iWindowsEffectMSec is not supported on WinNT
  24. MouseKeys:
  25. WinNT only supports: MKF_MOUSEKEYSON, MKF_AVAILABLE, MKF_HOTKEYACTIVE, MKF_HOTKEYSOUND
  26. WinNT does not support: MKF_CONFIRMHOTKEY, MKF_INDICATOR, MKF_MODIFIERS, MKF_REPLACENUMBERS