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
33 lines
692 B
/*****************************************************************************\
|
|
* MODULE: respdata.cpp
|
|
*
|
|
* PURPOSE: Implementation of COM interface for BidiSpooler
|
|
*
|
|
* Copyright (C) 2000 Microsoft Corporation
|
|
*
|
|
* History:
|
|
*
|
|
* 03/08/00 Weihai Chen (weihaic) Created
|
|
*
|
|
\*****************************************************************************/
|
|
|
|
#include "precomp.h"
|
|
#include "priv.h"
|
|
|
|
TBidiRequestInterfaceData::TBidiRequestInterfaceData (
|
|
IBidiRequest *pRequest):
|
|
m_pRequest (pRequest),
|
|
m_bValid (TRUE)
|
|
{
|
|
pRequest->AddRef ();
|
|
}
|
|
|
|
TBidiRequestInterfaceData::~TBidiRequestInterfaceData ()
|
|
{
|
|
pRequest->Release ();
|
|
}
|
|
|
|
|
|
|
|
|
|
|