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.

36 lines
479 B

  1. /*
  2. Copyright (c) 1997-1999 Microsoft Corporation
  3. Module Name:
  4. sdpatt.cpp
  5. Abstract:
  6. Author:
  7. */
  8. #include "sdppch.h"
  9. #include "sdpatt.h"
  10. #include "sdpbstrl.h"
  11. SDP_VALUE *
  12. SDP_ATTRIBUTE_LIST::CreateElement(
  13. )
  14. {
  15. SDP_CHAR_STRING_LINE *SdpCharStringLine;
  16. try
  17. {
  18. SdpCharStringLine = new SDP_CHAR_STRING_LINE(SDP_INVALID_ATTRIBUTE, m_TypeString);
  19. }
  20. catch(...)
  21. {
  22. SdpCharStringLine = NULL;
  23. }
  24. return SdpCharStringLine;
  25. }