/*========================================================================== * * 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; };