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.

41 lines
880 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000.
  5. //
  6. // File: C T R L R Q S T . H
  7. //
  8. // Contents: Header file for control request processing implementation
  9. // for the UPnP Device Host ISAPI Extension
  10. //
  11. // Notes:
  12. //
  13. // Author: spather 2000/08/31
  14. //
  15. //----------------------------------------------------------------------------
  16. #pragma once
  17. #ifndef __CTRLRQST_H
  18. #define __CTRLRQST_H
  19. typedef struct tagUPNP_SOAP_REQUEST
  20. {
  21. BSTR bstrActionName;
  22. IXMLDOMNodeList * pxdnlArgs;
  23. } UPNP_SOAP_REQUEST;
  24. typedef struct tagUPNP_SOAP_RESPONSE
  25. {
  26. BOOL fSucceeded;
  27. IXMLDOMDocument * pxddRespEnvelope;
  28. } UPNP_SOAP_RESPONSE;
  29. DWORD WINAPI
  30. DwHandleControlRequest(
  31. LPVOID lpParameter);
  32. #endif //!__CTRLRQST_H