BEEPER.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * BEEPER.H
  3.  * Beeper Automation Object #2 Chapter 14
  4.  *
  5.  * Classes that implement the Beeper object.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Right Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #ifndef _BEEPER_H_
  14. #define _BEEPER_H_
  15. /*
  16.  * This #define tells <bookguid.h> to not define GUIDs that will
  17.  * be defined in MKTYPLIB-generated header files, like ibeeper.h.
  18.  */
  19. #define GUIDS_FROM_TYPELIB
  20. #define INC_AUTOMATION
  21. #define CHAPTER14
  22. #include <inole.h>
  23. #include <malloc.h>
  24. //This file is generated from MKTYPLIB
  25. #include "ibeeper.h"
  26. //Help context ID for exceptions
  27. #define HID_SOUND_PROPERTY_LIMITATIONS  0x1E100
  28. //English exception strings
  29. #define IDS_0_MIN                   16
  30. #define IDS_0_EXCEPTIONSOURCE       (IDS_0_MIN)
  31. #define IDS_0_EXCEPTIONINVALIDSOUND (IDS_0_MIN+1)
  32. //German exception strings
  33. #define IDS_7_MIN                   32
  34. #define IDS_7_EXCEPTIONSOURCE       (IDS_7_MIN)
  35. #define IDS_7_EXCEPTIONINVALIDSOUND (IDS_7_MIN+1)
  36. //Forward class declarations for friend statements
  37. class CImpIDispatch;
  38. typedef CImpIDispatch *PCImpIDispatch;
  39. class CBeeper : public IBeeper
  40.     {
  41.     friend CImpIDispatch;
  42.     protected:
  43.         ULONG           m_cRef;             //Object reference count
  44.         LPUNKNOWN       m_pUnkOuter;        //Controlling unknown
  45.         PFNDESTROYED    m_pfnDestroy;       //To call on closure
  46.         long            m_lSound;
  47.         PCImpIDispatch  m_pImpIDispatch;    //Our IDispatch
  48.     public:
  49.         CBeeper(LPUNKNOWN, PFNDESTROYED);
  50.         ~CBeeper(void);
  51.         BOOL         Init(void);
  52.         //Non-delegating object IUnknown
  53.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  54.         STDMETHODIMP_(ULONG) AddRef(void);
  55.         STDMETHODIMP_(ULONG) Release(void);
  56.         //IBeeper functions
  57.         STDMETHODIMP_(long)  get_Sound(void);
  58.         STDMETHODIMP_(void)  put_Sound(long);
  59.         STDMETHODIMP_(long)  Beep(void);
  60.     };
  61. typedef CBeeper *PCBeeper;
  62. //DISPIDs for our dispinterface
  63. enum
  64.     {
  65.     PROPERTY_SOUND=0,
  66.     METHOD_BEEP
  67.     };
  68. /*
  69.  * IDispatch interface implementations for the Beeper.
  70.  */
  71. class CImpIDispatch : public IDispatch
  72.     {
  73.     public:
  74.         ULONG           m_cRef;     //For debugging
  75.     private:
  76.         PCBeeper        m_pObj;
  77.         LPUNKNOWN       m_pUnkOuter;
  78.         WORD            m_wException;
  79.         ITypeInfo      *m_pITINeutral;      //Type information
  80.         ITypeInfo      *m_pITIGerman;
  81.     public:
  82.         CImpIDispatch(PCBeeper, LPUNKNOWN);
  83.         ~CImpIDispatch(void);
  84.         /*
  85.          * This function is called from CBeeper functions that
  86.          * are called from within DispInvoke to set an exception.
  87.          * This is because the CBeeper functions have no way to
  88.          * tell DispInvoke of such exceptions, so we have to
  89.          * tell our IDispatch::Invoke implementation directly.
  90.          */
  91.         void Exception(WORD);
  92.         //IUnknown members that delegate to m_pUnkOuter.
  93.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  94.         STDMETHODIMP_(ULONG) AddRef(void);
  95.         STDMETHODIMP_(ULONG) Release(void);
  96.         //IDispatch members
  97.         STDMETHODIMP GetTypeInfoCount(UINT *);
  98.         STDMETHODIMP GetTypeInfo(UINT, LCID, ITypeInfo **);
  99.         STDMETHODIMP GetIDsOfNames(REFIID, OLECHAR **, UINT, LCID
  100.             , DISPID *);
  101.         STDMETHODIMP Invoke(DISPID, REFIID, LCID, WORD
  102.             , DISPPARAMS *, VARIANT *, EXCEPINFO *, UINT *);
  103.     };
  104. //Exceptions we can throw from IDispatch::Invoke
  105. enum
  106.     {
  107.     EXCEPTION_NONE=0,
  108.     EXCEPTION_INVALIDSOUND=1000
  109.     };
  110. //Exception filling function for the EXCEPINFO structure.
  111. HRESULT STDAPICALLTYPE FillException(EXCEPINFO *);
  112. #endif //_BEEPER_H_