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.
41 lines
732 B
41 lines
732 B
/*
|
|
* arostmsg.h
|
|
*
|
|
* Copyright (c) 1995 by DataBeam Corporation, Lexington, KY
|
|
*
|
|
* Abstract:
|
|
*
|
|
* Caveats:
|
|
* None.
|
|
*
|
|
* Author:
|
|
* blp/jbo
|
|
*/
|
|
#ifndef _APPLICATION_ROSTER_MESSAGE_
|
|
#define _APPLICATION_ROSTER_MESSAGE_
|
|
|
|
#include "arost.h"
|
|
#include "clists.h"
|
|
|
|
class CAppRosterMsg : public CRefCount
|
|
{
|
|
public:
|
|
|
|
CAppRosterMsg(void);
|
|
~CAppRosterMsg(void);
|
|
|
|
GCCError LockApplicationRosterMessage(void);
|
|
void UnLockApplicationRosterMessage(void);
|
|
|
|
GCCError GetAppRosterMsg(LPBYTE *ppData, ULONG *pcRosters);
|
|
|
|
void AddRosterToMessage(CAppRoster *);
|
|
|
|
private:
|
|
|
|
CAppRosterList m_AppRosterList;
|
|
LPBYTE m_pMsgData;
|
|
};
|
|
|
|
#endif // _APPLICATION_ROSTER_MESSAGE_
|
|
|