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.

71 lines
2.2 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992-1998.
  5. //
  6. // File: SETarget.idl
  7. //
  8. // Contents: IShellExecuteTarget interfaces
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 28-JAN-98 ZekeL (Zeke Lucas) - created
  15. //
  16. //----------------------------------------------------------------------------
  17. cpp_quote("//=--------------------------------------------------------------------------=")
  18. cpp_quote("// setarget.h")
  19. cpp_quote("//=--------------------------------------------------------------------------=")
  20. cpp_quote("// (C) Copyright 1995-1998 Microsoft Corporation. All Rights Reserved.")
  21. cpp_quote("//")
  22. cpp_quote("// THIS CODE AND INFORMATION IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF")
  23. cpp_quote("// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO")
  24. cpp_quote("// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A")
  25. cpp_quote("// PARTICULAR PURPOSE.")
  26. cpp_quote("//=--------------------------------------------------------------------------=")
  27. cpp_quote("")
  28. cpp_quote("#pragma comment(lib,\"uuid.lib\")")
  29. cpp_quote("")
  30. cpp_quote("//---------------------------------------------------------------------------=")
  31. cpp_quote("// IShellExecuteTarget Interface.")
  32. cpp_quote("")
  33. import "objidl.idl";
  34. import "oleidl.idl";
  35. interface IShellExecuteTarget;
  36. //+---------------------------------------------------------------------------
  37. //
  38. // Copyright (C) Microsoft Corporation, 1995-1998.
  39. //
  40. // Contents: IShellExecuteTarget interface definition
  41. //
  42. //----------------------------------------------------------------------------
  43. cpp_quote("#ifndef _LPSHELLEXECUTETARGET_DEFINED")
  44. cpp_quote("#define _LPSHELLEXECUTETARGET_DEFINED")
  45. [
  46. uuid(7C1B9250-9380-11D1-BE5E-0000F805CA57),
  47. helpstring("IShellExecuteTarget Interface"),
  48. pointer_default(unique)
  49. ]
  50. interface IShellExecuteTarget : IUnknown
  51. {
  52. HRESULT ExecObject(
  53. [in] LPCOLESTR pszVerb,
  54. [in] REFCLSID clsidObject,
  55. [in] IStream *pstmObject,
  56. [in] DWORD dwFlags);
  57. };
  58. cpp_quote("#endif")