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

/*
Copyright (c) 1998-1999 Microsoft Corporation
Module Name:
blbsdp.h
Abstract:
Author:
*/
#ifndef __SDP_BLOB__
#define __SDP_BLOB__
#include "sdp.h"
class SDP_BLOB : public SDP,
public SDP_BSTRING
{
public:
inline BOOL IsValid();
HRESULT SetBstr(
IN BSTR SdpPacketBstr
);
HRESULT SetTstr(
IN TCHAR *SdpPacketTstr
);
HRESULT GetBstr(
OUT BSTR *SdpPacketBstr
);
};
inline BOOL
SDP_BLOB::IsValid(
)
{
return SDP::IsValid();
}
#endif // __SDP_BLOB__