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.

86 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name :
  4. streamcontext.cxx
  5. Abstract:
  6. Implementation of STREAM_CONTEXT. One such object for every connection
  7. Author:
  8. Bilal Alam (BAlam) 29-March-2000
  9. Environment:
  10. Win32 - User Mode
  11. Project:
  12. Stream Filter Worker Process
  13. --*/
  14. #include "precomp.hxx"
  15. STREAM_CONTEXT::STREAM_CONTEXT(
  16. FILTER_CHANNEL_CONTEXT * pContext
  17. )
  18. {
  19. DBG_ASSERT( pContext != NULL );
  20. _pFiltChannelContext = pContext;
  21. _dwSignature = STREAM_CONTEXT_SIGNATURE;
  22. }
  23. STREAM_CONTEXT::~STREAM_CONTEXT()
  24. {
  25. _dwSignature = STREAM_CONTEXT_SIGNATURE_FREE;
  26. }
  27. //static
  28. HRESULT
  29. STREAM_CONTEXT::Initialize(
  30. VOID
  31. )
  32. /*++
  33. Routine Description:
  34. Global Initialization
  35. Arguments:
  36. None
  37. Return Value:
  38. HRESULT
  39. --*/
  40. {
  41. return NO_ERROR;
  42. }
  43. //static
  44. VOID
  45. STREAM_CONTEXT::Terminate(
  46. VOID
  47. )
  48. /*++
  49. Routine Description:
  50. Global termination
  51. Arguments:
  52. None
  53. Return Value:
  54. None
  55. --*/
  56. {
  57. }