Source code of Windows XP (NT5)
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.

31 lines
546 B

  1. [ uuid(2F5F6521-CA47-1068-B319-00DD010662DB),
  2. version(1.0),
  3. #ifdef __midl
  4. ms_union,
  5. #endif // __midl
  6. pointer_default(unique)
  7. ]
  8. interface remotesp
  9. {
  10. typedef [context_handle] void * PCONTEXT_HANDLE_TYPE2;
  11. long
  12. RemoteSPAttach(
  13. [out] PCONTEXT_HANDLE_TYPE2 *pphContext
  14. );
  15. void
  16. RemoteSPEventProc(
  17. [in] PCONTEXT_HANDLE_TYPE2 phContext,
  18. [in, length_is(lSize), size_is(lSize)] unsigned char pBuffer[],
  19. [in] long lSize
  20. );
  21. void
  22. RemoteSPDetach(
  23. [in, out] PCONTEXT_HANDLE_TYPE2 *pphContext
  24. );
  25. }