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.

33 lines
692 B

  1. /*****************************************************************************\
  2. * MODULE: respdata.cpp
  3. *
  4. * PURPOSE: Implementation of COM interface for BidiSpooler
  5. *
  6. * Copyright (C) 2000 Microsoft Corporation
  7. *
  8. * History:
  9. *
  10. * 03/08/00 Weihai Chen (weihaic) Created
  11. *
  12. \*****************************************************************************/
  13. #include "precomp.h"
  14. #include "priv.h"
  15. TBidiRequestInterfaceData::TBidiRequestInterfaceData (
  16. IBidiRequest *pRequest):
  17. m_pRequest (pRequest),
  18. m_bValid (TRUE)
  19. {
  20. pRequest->AddRef ();
  21. }
  22. TBidiRequestInterfaceData::~TBidiRequestInterfaceData ()
  23. {
  24. pRequest->Release ();
  25. }