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.

30 lines
996 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: PSink.idl
  7. //
  8. // Contents: IPhraseSink interface definition
  9. //
  10. // History: 10-Nov-93 AmyA Created
  11. // 08-Apr-94 KyleP Sync with spec
  12. //
  13. //--------------------------------------------------------------------------
  14. #include "idlmulti.h"
  15. LOCAL_INTERFACE(CC906FF0-C058-101A-B554-08002B33B0E6)
  16. interface IPhraseSink : IUnknown
  17. {
  18. HRESULT PutSmallPhrase( [in, size_is(cwcNoun)] WCHAR const * pwcNoun,
  19. [in] ULONG cwcNoun,
  20. [in, size_is(cwcModifier)] WCHAR const * pwcModifier,
  21. [in] ULONG cwcModifier,
  22. [in] ULONG ulAttachmentType );
  23. HRESULT PutPhrase( [in, size_is(cwcPhrase)] WCHAR const * pwcPhrase,
  24. [in] ULONG cwcPhrase );
  25. }