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.

57 lines
1.7 KiB

  1. Outstanding issues in priority order:
  2. t-darouy [Dec-10-97]
  3. 1.
  4. Darwin package. I couldn't get the packing tool to work in time so someone else
  5. will have to investigate this.
  6. 2.
  7. Error messages are pretty goofy right now. The most pressing one is the
  8. access denied on fax connect server. Right now it give up and says "The Fax
  9. server is down." which may not be correct. Most other error messages are
  10. just FormatMessage() strings and as such, are not really human readable. :-)
  11. Exception handlers are native C++. This means I can't retrieve native NT SEH
  12. information. This also leads to goofy errors where I can get an exception, and
  13. return an incorrect error message. Either I should switch back to SEH,
  14. use a wrapper to convert SEH to C++ Exceptions, or I should simply display
  15. a general "Something bad happened" dialog.
  16. 3.
  17. Help file.
  18. 4.
  19. Show an X through the root node folder if the fax server can't be connected,
  20. or the RPC connection breaks. This change is dependent on the MMC guys adding
  21. support to change the icon of the root folder.
  22. 5.
  23. The sorting in the devices pane for priorities is pretty bad. I
  24. update the priority number and call the MMC's sort function on that
  25. column. Problem is, the MMC likes to sort in descending order the
  26. first time I call the sort function, so I call it twice to get around this.
  27. This is bad if there are a large number of devices, which is not an issue at
  28. the present time.
  29. 6.
  30. Thread faxconnect since it can take a while.
  31. 7.
  32. Think about having a task pad for global fax server settings,
  33. since it is not immediately obvious that fax properties are under
  34. the root node.
  35. 8.
  36. Use the new dynamic extension CCF format to programmatically enable
  37. the Fax routing extension.