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.

24 lines
523 B

  1. // Dspecup.lib interface
  2. // Copyright (c) 2001 Microsoft Corporation
  3. // Jun 2001 lucios
  4. #ifndef DSPECUP_HPP
  5. #define DSPECUP_HPP
  6. extern "C"
  7. {
  8. typedef void (*progressFunction)(long arg, void *calleeStruct);
  9. HRESULT
  10. UpgradeDisplaySpecifiers
  11. (
  12. PWSTR logFilesPath,
  13. GUID *OperationGuid,
  14. BOOL dryRun,
  15. PWSTR *errorMsg=NULL,
  16. void *caleeStruct=NULL,
  17. progressFunction stepIt=NULL,
  18. progressFunction totalSteps=NULL
  19. );
  20. }
  21. #endif