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.

51 lines
627 B

  1. /*
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. blbsdp.h
  5. Abstract:
  6. Author:
  7. */
  8. #ifndef __SDP_BLOB__
  9. #define __SDP_BLOB__
  10. #include "sdp.h"
  11. class SDP_BLOB : public SDP,
  12. public SDP_BSTRING
  13. {
  14. public:
  15. inline BOOL IsValid();
  16. HRESULT SetBstr(
  17. IN BSTR SdpPacketBstr
  18. );
  19. HRESULT SetTstr(
  20. IN TCHAR *SdpPacketTstr
  21. );
  22. HRESULT GetBstr(
  23. OUT BSTR *SdpPacketBstr
  24. );
  25. };
  26. inline BOOL
  27. SDP_BLOB::IsValid(
  28. )
  29. {
  30. return SDP::IsValid();
  31. }
  32. #endif // __SDP_BLOB__