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.

37 lines
1.0 KiB

  1. [ uuid (12345678-1234-1234-1234-123456789ABe),
  2. version(1.0),
  3. pointer_default(unique)]
  4. interface sspitest
  5. {
  6. unsigned long
  7. RemoteCall(
  8. [in] handle_t BindingHandle,
  9. [in] unsigned long Options,
  10. [in, string, unique] char * RemoteAddress,
  11. [in, string, unique] char * RemoteProtocol,
  12. [in, string, unique] char * RemoteEndpoint,
  13. [in, string, unique] char * Principal,
  14. [in, string, unique] char * Address,
  15. [in] unsigned long AuthnLevel,
  16. [in] unsigned long AuthnSvc,
  17. [in] unsigned long Recursion
  18. );
  19. unsigned long
  20. ReadRegistryValueData(
  21. [in] handle_t BindingHandle,
  22. [in] unsigned long RootKeyLower, // HKEY_LOCAL_MACHINE 0x80000002 -> 2
  23. [in, string, unique] char * pszRegistryKey,
  24. [in, string, unique] char * pszRegistryValue,
  25. [in] unsigned long cbBuf,
  26. [in, out, unique, size_is(cbBuf)] char * pBuf,
  27. [out] unsigned long * pDataType,
  28. [out] unsigned long * pcbReturned
  29. );
  30. void
  31. Shutdown(
  32. [in] handle_t BindingHandle
  33. );
  34. }