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.

36 lines
576 B

  1. #ifndef DSPECUP_HPP
  2. #define DSPECUP_HPP
  3. typedef void (*progressFunction)(long arg, void *calleeStruct);
  4. HRESULT
  5. UpgradeDisplaySpecifiers
  6. (
  7. BOOL dryRun,
  8. PWSTR *errorMsg=NULL,
  9. void *caleeStruct=NULL,
  10. progressFunction stepIt=NULL,
  11. progressFunction totalSteps=NULL
  12. );
  13. HRESULT
  14. RunAnalisys
  15. (
  16. PWSTR *errorMsg=NULL,
  17. void *caleeStruct=NULL,
  18. progressFunction stepIt=NULL,
  19. progressFunction totalSteps=NULL
  20. );
  21. HRESULT
  22. RunRepair
  23. (
  24. PWSTR *errorMsg=NULL,
  25. void *caleeStruct=NULL,
  26. progressFunction stepIt=NULL,
  27. progressFunction totalSteps=NULL
  28. );
  29. #endif