2020-09-30 16:53:55 +02:00

54 lines
1.7 KiB
C++

/*==========================================================================
*
* Copyright (C) 2000 Microsoft Corporation. All Rights Reserved.
*
* File: QueuedMsg.cpp
* Content: Queued Message Objects
*@@BEGIN_MSINTERNAL
* History:
* Date By Reason
* ==== == ======
* 07/31/00 mjn Created
*@@END_MSINTERNAL
*
***************************************************************************/
#include "dncorei.h"
//**********************************************************************
// Constant definitions
//**********************************************************************
//**********************************************************************
// Macro definitions
//**********************************************************************
//**********************************************************************
// Structure definitions
//**********************************************************************
//**********************************************************************
// Variable definitions
//**********************************************************************
//**********************************************************************
// Function prototypes
//**********************************************************************
//**********************************************************************
// Function definitions
//**********************************************************************
#undef DPF_MODNAME
#define DPF_MODNAME "CQueuedMsg::SetAsyncOp"
void CQueuedMsg::SetAsyncOp(CAsyncOp *const pAsyncOp)
{
if (pAsyncOp)
{
pAsyncOp->AddRef();
}
m_pAsyncOp = pAsyncOp;
};