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.

31 lines
933 B

  1. [strict_context_handle, implicit_handle (handle_t svcctl_handle)]
  2. interface svcctl
  3. {
  4. RQueryServiceConfigW ([byte_count(cbBufSize)] lpServiceConfig);
  5. RQueryServiceLockStatusW([byte_count(cbBufSize)] lpLockStatus);
  6. RQueryServiceConfigA ([byte_count(cbBufSize)] lpServiceConfig);
  7. RQueryServiceLockStatusA([byte_count(cbBufSize)] lpLockStatus);
  8. //
  9. // To be used when we get the new RPC MIDL drop -
  10. //
  11. // This is supposed to tell MIDL that it can check the buffer size
  12. // when it is unmarshalling Data Structures directly into the user buffer.
  13. //
  14. //
  15. // REnumServicesStatusW([byte_count(pcbReturned)] lpBuffer);
  16. // REnumServicesStatusA([byte_count(pcbReturned)] lpBuffer);
  17. //
  18. // NOTE:
  19. // byte_count is not needed for SERVICE_STATUS structures because that
  20. // structure doesn't contain any pointers. byte_count is only needed
  21. // when we need to know the size of the rest of the tree.
  22. //
  23. //
  24. }