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.

38 lines
634 B

  1. /*
  2. * crostmsg.h
  3. *
  4. * Copyright (c) 1995 by DataBeam Corporation, Lexington, KY
  5. *
  6. * Abstract:
  7. *
  8. * Caveats:
  9. * None.
  10. *
  11. * Author:
  12. * blp/jbo
  13. */
  14. #ifndef _CONFERENCE_ROSTER_MESSAGE_
  15. #define _CONFERENCE_ROSTER_MESSAGE_
  16. #include "crost.h"
  17. class CConfRosterMsg : public CRefCount
  18. {
  19. public:
  20. CConfRosterMsg(CConfRoster *conference_roster);
  21. ~CConfRosterMsg(void);
  22. GCCError LockConferenceRosterMessage(void);
  23. void UnLockConferenceRosterMessage(void);
  24. GCCError GetConferenceRosterMessage(LPBYTE *ppData);
  25. private:
  26. LPBYTE m_pMemoryBlock;
  27. CConfRoster *m_pConfRoster;
  28. };
  29. #endif