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.

44 lines
753 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. msgsvcsend.idl
  5. Abstract:
  6. Contains the RPC routines for point to point message send.
  7. The client is in the workstation service, and the server is in the Messenger service.
  8. Author:
  9. Will Lees (wlees) Sep 21, 1997
  10. Environment:
  11. User Mode - Win32 - MIDL
  12. Revision History:
  13. --*/
  14. [ uuid (5a7b91f8-ff00-11d0-a9b2-00c04fb6e6fc),
  15. version(1.0),
  16. pointer_default(unique)
  17. ]
  18. interface msgsvcsend
  19. {
  20. import "imports.idl";
  21. #include <lmcons.h>
  22. error_status_t
  23. NetrSendMessage(
  24. [in] handle_t hRpcBinding,
  25. [in, string] LPSTR From,
  26. [in, string] LPSTR To,
  27. [in, string] LPSTR Text
  28. );
  29. }