mirror of https://github.com/tongzx/nt5src
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.
36 lines
479 B
36 lines
479 B
/*
|
|
|
|
Copyright (c) 1997-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
sdpatt.cpp
|
|
|
|
Abstract:
|
|
|
|
|
|
Author:
|
|
|
|
*/
|
|
|
|
#include "sdppch.h"
|
|
|
|
#include "sdpatt.h"
|
|
#include "sdpbstrl.h"
|
|
|
|
SDP_VALUE *
|
|
SDP_ATTRIBUTE_LIST::CreateElement(
|
|
)
|
|
{
|
|
SDP_CHAR_STRING_LINE *SdpCharStringLine;
|
|
|
|
try
|
|
{
|
|
SdpCharStringLine = new SDP_CHAR_STRING_LINE(SDP_INVALID_ATTRIBUTE, m_TypeString);
|
|
}
|
|
catch(...)
|
|
{
|
|
SdpCharStringLine = NULL;
|
|
}
|
|
|
|
return SdpCharStringLine;
|
|
}
|