home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap14 / beeper2 / beeper.h < prev    next >
C/C++ Source or Header  |  1995-05-03  |  4KB  |  146 lines

  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.  
  14.  
  15. #ifndef _BEEPER_H_
  16. #define _BEEPER_H_
  17.  
  18. /*
  19.  * This #define tells <bookguid.h> to not define GUIDs that will
  20.  * be defined in MKTYPLIB-generated header files, like ibeeper.h.
  21.  */
  22. #define GUIDS_FROM_TYPELIB
  23. #define INC_AUTOMATION
  24. #define CHAPTER14
  25. #include <inole.h>
  26. #include <malloc.h>
  27.  
  28. //This file is generated from MKTYPLIB
  29. #include "ibeeper.h"
  30.  
  31. //Help context ID for exceptions
  32. #define HID_SOUND_PROPERTY_LIMITATIONS  0x1E100
  33.  
  34. //English exception strings
  35. #define IDS_0_MIN                   16
  36. #define IDS_0_EXCEPTIONSOURCE       (IDS_0_MIN)
  37. #define IDS_0_EXCEPTIONINVALIDSOUND (IDS_0_MIN+1)
  38.  
  39. //German exception strings
  40. #define IDS_7_MIN                   32
  41. #define IDS_7_EXCEPTIONSOURCE       (IDS_7_MIN)
  42. #define IDS_7_EXCEPTIONINVALIDSOUND (IDS_7_MIN+1)
  43.  
  44.  
  45. //Forward class declarations for friend statements
  46. class CImpIDispatch;
  47. typedef CImpIDispatch *PCImpIDispatch;
  48.  
  49.  
  50. class CBeeper : public IBeeper
  51.     {
  52.     friend CImpIDispatch;
  53.  
  54.     protected:
  55.         ULONG           m_cRef;             //Object reference count
  56.         LPUNKNOWN       m_pUnkOuter;        //Controlling unknown
  57.         PFNDESTROYED    m_pfnDestroy;       //To call on closure
  58.  
  59.         long            m_lSound;
  60.         PCImpIDispatch  m_pImpIDispatch;    //Our IDispatch
  61.  
  62.     public:
  63.         CBeeper(LPUNKNOWN, PFNDESTROYED);
  64.         ~CBeeper(void);
  65.  
  66.         BOOL         Init(void);
  67.  
  68.         //Non-delegating object IUnknown
  69.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  70.         STDMETHODIMP_(ULONG) AddRef(void);
  71.         STDMETHODIMP_(ULONG) Release(void);
  72.  
  73.         //IBeeper functions
  74.         STDMETHODIMP_(long)  get_Sound(void);
  75.         STDMETHODIMP_(void)  put_Sound(long);
  76.         STDMETHODIMP_(long)  Beep(void);
  77.     };
  78.  
  79. typedef CBeeper *PCBeeper;
  80.  
  81.  
  82. //DISPIDs for our dispinterface
  83. enum
  84.     {
  85.     PROPERTY_SOUND=0,
  86.     METHOD_BEEP
  87.     };
  88.  
  89. /*
  90.  * IDispatch interface implementations for the Beeper.
  91.  */
  92.  
  93. class CImpIDispatch : public IDispatch
  94.     {
  95.     public:
  96.         ULONG           m_cRef;     //For debugging
  97.  
  98.     private:
  99.         PCBeeper        m_pObj;
  100.         LPUNKNOWN       m_pUnkOuter;
  101.         WORD            m_wException;
  102.  
  103.         ITypeInfo      *m_pITINeutral;      //Type information
  104.         ITypeInfo      *m_pITIGerman;
  105.  
  106.     public:
  107.         CImpIDispatch(PCBeeper, LPUNKNOWN);
  108.         ~CImpIDispatch(void);
  109.  
  110.         /*
  111.          * This function is called from CBeeper functions that
  112.          * are called from within DispInvoke to set an exception.
  113.          * This is because the CBeeper functions have no way to
  114.          * tell DispInvoke of such exceptions, so we have to
  115.          * tell our IDispatch::Invoke implementation directly.
  116.          */
  117.         void Exception(WORD);
  118.  
  119.         //IUnknown members that delegate to m_pUnkOuter.
  120.         STDMETHODIMP         QueryInterface(REFIID, PPVOID);
  121.         STDMETHODIMP_(ULONG) AddRef(void);
  122.         STDMETHODIMP_(ULONG) Release(void);
  123.  
  124.         //IDispatch members
  125.         STDMETHODIMP GetTypeInfoCount(UINT *);
  126.         STDMETHODIMP GetTypeInfo(UINT, LCID, ITypeInfo **);
  127.         STDMETHODIMP GetIDsOfNames(REFIID, OLECHAR **, UINT, LCID
  128.             , DISPID *);
  129.         STDMETHODIMP Invoke(DISPID, REFIID, LCID, WORD
  130.             , DISPPARAMS *, VARIANT *, EXCEPINFO *, UINT *);
  131.     };
  132.  
  133.  
  134. //Exceptions we can throw from IDispatch::Invoke
  135. enum
  136.     {
  137.     EXCEPTION_NONE=0,
  138.     EXCEPTION_INVALIDSOUND=1000
  139.     };
  140.  
  141.  
  142. //Exception filling function for the EXCEPINFO structure.
  143. HRESULT STDAPICALLTYPE FillException(EXCEPINFO *);
  144.  
  145. #endif //_BEEPER_H_
  146.