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.

32 lines
668 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: iprognot.idl
  7. //
  8. // Contents: IProgressNotify
  9. //
  10. // History: 28-Dec-95 SusiA Created
  11. //
  12. //----------------------------------------------------------------------------
  13. [
  14. local,
  15. object,
  16. uuid(a9d758a0-4617-11cf-95fc-00aa00680db4),
  17. pointer_default(unique)
  18. ]
  19. interface IProgressNotify: IUnknown
  20. {
  21. import "unknwn.idl";
  22. HRESULT OnProgress (
  23. [in] DWORD dwProgressCurrent,
  24. [in] DWORD dwProgressMaximum,
  25. [in] BOOL fAccurate
  26. );
  27. }