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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      UTILCAR.CPP
  3.   Summary:   Implementation file for the aggregatable COUtilityCar COM
  4.              object class.
  5.              UTILCAR showcases the construction of the COUtilityCar COM
  6.              object class with the IUnknown, ICar, and IUtility interfaces.
  7.              This is done through Containment reuse of COCar's ICar
  8.              interface features.
  9.              For a comprehensive tutorial code tour of this module's
  10.              contents and offerings see the tutorial DLLSERVE.HTM file.
  11.              For more specific technical details on the internal workings
  12.              see the comments dispersed throughout the module's source code.
  13.   Classes:   COUtilityCar.
  14.   Functions: none.
  15.   Origin:    9-11-95: atrent - Editor-inheritance from UTILCAR.CPP in
  16.                the COMOBJ Tutorial Code Sample.
  17. ----------------------------------------------------------------------------
  18.   This file is part of the Microsoft COM Tutorial Code Samples.
  19.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  20.   This source code is intended only as a supplement to Microsoft
  21.   Development Tools and/or on-line documentation.  See these other
  22.   materials for detailed information regarding Microsoft code samples.
  23.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  24.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  25.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  26.   PARTICULAR PURPOSE.
  27. ==========================================================================+*/
  28. /*---------------------------------------------------------------------------
  29.   We include WINDOWS.H for all Win32 applications.
  30.   We include OLE2.H because we will be calling the COM/OLE Libraries.
  31.   We include APPUTIL.H because we will be building this application using
  32.     the convenient Virtual Window and Dialog classes and other
  33.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  34.   We include ICARS.H and CARGUIDS.H for the common car-related Interface
  35.     class, GUID, and CLSID specifications.
  36.   We include SERVER.H because it has internal class declarations and
  37.     resource ID definitions specific for this DLL.
  38.   We include CAR.H because it has the class COCar declarations.
  39.   We include UTILCAR.H because it has the class COUtilityCar declarations.
  40. ---------------------------------------------------------------------------*/
  41. #include <windows.h>
  42. #include <ole2.h>
  43. #include <apputil.h>
  44. #include <icars.h>
  45. #include <carguids.h>
  46. #include "server.h"
  47. #include "car.h"
  48. #include "utilcar.h"
  49. /*---------------------------------------------------------------------------
  50.   COUtilityCar's implementation of its main COM object class including
  51.   Constructor, Destructor, QueryInterface, AddRef, and Release.
  52. ---------------------------------------------------------------------------*/
  53. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  54.   Method:   COUtilityCar::COUtilityCar
  55.   Summary:  COUtilityCar Constructor. Note the member initializers:
  56.             "m_ImpICar(this, pUnkOuter)" and "m_ImpIUtility(this,
  57.             pUnkOuter)" which are used to pass the 'this' and
  58.             pUnkOuter pointers of this constructor function to the
  59.             constructors that instantiate the implementations of
  60.             the CImpICar and CImpIUtility interfaces (which are both
  61.             nested inside this present COUtilityCar Object Class.
  62.   Args:     IUnknown* pUnkOuter,
  63.               Pointer to the the outer Unknown.  NULL means this COM Object
  64.               is not being Aggregated.  Non NULL means it is being created
  65.               on behalf of an outside COM object that is reusing it via
  66.               aggregation.
  67.             CServer* pServer)
  68.               Pointer to the server's control object.
  69.   Modifies: m_cRefs, m_pUnkOuter.
  70.   Returns:  void
  71. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  72. COUtilityCar::COUtilityCar(
  73.   IUnknown* pUnkOuter,
  74.   CServer* pServer) :
  75.   m_ImpICar(this, pUnkOuter),
  76.   m_ImpIUtility(this, pUnkOuter)
  77. {
  78.   // Zero the COM object's reference count.
  79.   m_cRefs = 0;
  80.   // No AddRef necessary if non-NULL, as we're nested.
  81.   m_pUnkOuter = pUnkOuter;
  82.   // Zero the pointer to the contained COCar object's ICar interface.
  83.   m_pICar = NULL;
  84.   // Init the pointer to the server's control object.
  85.   m_pServer = pServer;
  86.   LOGF1("S: COUtilityCar Constructor. m_pUnkOuter=0x%X.", m_pUnkOuter);
  87.   return;
  88. }
  89. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  90.   Method:   COUtilityCar::~COUtilityCar
  91.   Summary:  COUtilityCar Destructor.
  92.   Args:     void
  93.   Modifies: .
  94.   Returns:  void
  95. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  96. COUtilityCar::~COUtilityCar(void)
  97. {
  98.   LOG("S: COUtilityCar::Destructor.");
  99.   // Release the contained Car object.
  100.   m_pICar->Release();
  101.   return;
  102. }
  103. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  104.   Method:   COUtilityCar::Init
  105.   Summary:  COUtilityCar Initialization method.
  106.   Args:     void
  107.   Modifies: m_pUnkCar, m_pICar, m_cRefs.
  108.   Returns:  HRESULT
  109.               Standard result code. NOERROR for success.
  110. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  111. HRESULT COUtilityCar::Init(void)
  112. {
  113.   HRESULT hr;
  114.   LOG("S: COUtilityCar::Init.");
  115.   // Set up the right pIUnknown for delegation.  If we are being
  116.   // aggregated then we pass the pUnkOuter in turn to any COM objects
  117.   // that we are aggregating.  m_pUnkOuter was set in the Constructor.
  118.   IUnknown* pUnkOuter = (NULL == m_pUnkOuter) ? this : m_pUnkOuter;
  119.   // We create an instance of the COCar object and do this via the
  120.   // Containment reuse technique.  We ask for the new COM object's
  121.   // ICar interface directly.  We pass NULL for the pUnkOuter
  122.   // aggregation pointer because we are not aggregating.  It is here
  123.   // that we are reusing the COCar COM Object through the Containment
  124.   // technique.  We cache the requested ICar interface pointer in this
  125.   // COUtilityCar COM object for later use.  We don't need to AddRef
  126.   // this interface because the CoCreateInstance will do this for us.
  127.   hr = CoCreateInstance(
  128.          CLSID_DllCar,
  129.          NULL,
  130.          CLSCTX_INPROC_SERVER,
  131.          IID_ICar,
  132.          (PPVOID)&m_pICar);
  133.   if (SUCCEEDED(hr))
  134.   {
  135.     LOG("S: COUtilityCar::Init (New Containment of COCar) Succeeded.");
  136.   }
  137.   else
  138.   {
  139.     LOG("S: COUtilityCar::Init (New Containment of COCar) Failed.");
  140.   }
  141.   return (hr);
  142. }
  143. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  144.   Method:   COUtilityCar::QueryInterface
  145.   Summary:  QueryInterface of the COUtilityCar non-delegating
  146.             IUnknown implementation.
  147.   Args:     REFIID riid,
  148.               [in] GUID of the Interface being requested.
  149.             PPVOID ppv)
  150.               [out] Address of the caller's pointer variable that will
  151.               receive the requested interface pointer.
  152.   Modifies: .
  153.   Returns:  HRESULT
  154. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  155. STDMETHODIMP COUtilityCar::QueryInterface(
  156.                REFIID riid,
  157.                PPVOID ppv)
  158. {
  159.   HRESULT hr = E_NOINTERFACE;
  160.   *ppv = NULL;
  161.   if (IID_IUnknown == riid)
  162.   {
  163.     *ppv = this;
  164.     LOG("S: COUtilityCar::QueryInterface. 'this' pIUnknown returned");
  165.   }
  166.   else if (IID_ICar == riid)
  167.   {
  168.     *ppv = &m_ImpICar;
  169.     LOG("S: COUtilityCar::QueryInterface. pICar returned");
  170.   }
  171.   else if (IID_IUtility == riid)
  172.   {
  173.     *ppv = &m_ImpIUtility;
  174.     LOG("S: COUtilityCar::QueryInterface. pIUtility returned");
  175.   }
  176.   if (NULL != *ppv)
  177.   {
  178.     // We've handed out a pointer to the interface so obey the COM rules
  179.     //   and AddRef the reference count.
  180.     ((LPUNKNOWN)*ppv)->AddRef();
  181.     hr = NOERROR;
  182.   }
  183.   return (hr);
  184. }
  185. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  186.   Method:   COUtilityCar::AddRef
  187.   Summary:  AddRef of the COUtilityCar non-delegating IUnknown implementation.
  188.   Args:     void
  189.   Modifies: m_cRefs.
  190.   Returns:  ULONG
  191.               New value of m_cRefs (COM object's reference count).
  192. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  193. STDMETHODIMP_(ULONG) COUtilityCar::AddRef(void)
  194. {
  195.   m_cRefs++;
  196.   LOGF1("S: COUtilityCar::AddRef. New cRefs=%i.", m_cRefs);
  197.   return m_cRefs;
  198. }
  199. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  200.   Method:   COUtilityCar::Release
  201.   Summary:  Release of the COUtilityCar non-delegating IUnknown implementation.
  202.   Args:     void
  203.   Modifies: m_cRefs.
  204.   Returns:  ULONG
  205.               New value of m_cRefs (COM object's reference count).
  206. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  207. STDMETHODIMP_(ULONG) COUtilityCar::Release(void)
  208. {
  209.   m_cRefs--;
  210.   LOGF1("S: COUtilityCar::Release. New cRefs=%i.", m_cRefs);
  211.   if (0 == m_cRefs)
  212.   {
  213.     // We've reached a zero reference count for this COM object.
  214.     // So we tell the server housing to decrement its global object
  215.     // count so that the server will be unloaded if appropriate.
  216.     if (NULL != m_pServer)
  217.       m_pServer->ObjectsDown();
  218.     // We artificially bump the main ref count to prevent reentrancy
  219.     // via the main object destructor.
  220.     m_cRefs++;
  221.     delete this;
  222.   }
  223.   return m_cRefs;
  224. }
  225. /*---------------------------------------------------------------------------
  226.   COUtilityCar's nested implementation of the ICar interface including
  227.   Constructor, Destructor, QueryInterface, AddRef, Release,
  228.   Shift, Clutch, Speed, and Steer.
  229. ---------------------------------------------------------------------------*/
  230. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  231.   Method:   COUtilityCar::CImpICar::CImpICar
  232.   Summary:  Constructor for the CImpICar interface instantiation.
  233.   Args:     COUtilityCar* pBackObj,
  234.               Back pointer to the parent outer object.
  235.             IUnknown* pUnkOuter,
  236.               Pointer to the outer Unknown.  For delegation.
  237.   Modifies: m_cRefI, m_pBackObj, m_pUnkOuter.
  238.   Returns:  void
  239. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  240. COUtilityCar::CImpICar::CImpICar(
  241.   COUtilityCar* pBackObj,
  242.   IUnknown* pUnkOuter)
  243. {
  244.   // Init the Interface Ref Count (used for debugging only).
  245.   m_cRefI = 0;
  246.   // Init the Back Object Pointer to point to the outer object.
  247.   m_pBackObj = pBackObj;
  248.   // Init the CImpICar interface's delegating Unknown pointer.  We use
  249.   // the Back Object pointer for IUnknown delegation here if we are not
  250.   // being aggregated.  If we are being aggregated we use the supplied
  251.   // pUnkOuter for IUnknown delegation.  In either case the pointer
  252.   // assignment requires no AddRef because the CImpICar lifetime is
  253.   // quaranteed by the lifetime of the parent object in which
  254.   // CImpICar is nested.
  255.   if (NULL == pUnkOuter)
  256.   {
  257.     m_pUnkOuter = pBackObj;
  258.     LOG("S: COUtilityCar::CImpICar Constructor. Non-Aggregating");
  259.   }
  260.   else
  261.   {
  262.     m_pUnkOuter = pUnkOuter;
  263.     LOG("S: COUtilityCar::CImpICar Constructor. Aggregating");
  264.   }
  265.   return;
  266. }
  267. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  268.   Method:   COUtilityCar::CImpICar::~CImpICar
  269.   Summary:  Destructor for the CImpICar interface instantiation.
  270.   Args:     void
  271.   Modifies: .
  272.   Returns:  void
  273. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  274. COUtilityCar::CImpICar::~CImpICar(void)
  275. {
  276.   LOG("S: COUtilityCar::CImpICar Destructor.");
  277.   return;
  278. }
  279. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  280.   Method:   COUtilityCar::CImpICar::QueryInterface
  281.   Summary:  The QueryInterface IUnknown member of this ICar interface
  282.             implementation that delegates to m_pUnkOuter, whatever it is.
  283.   Args:     REFIID riid,
  284.               [in] GUID of the Interface being requested.
  285.             PPVOID ppv)
  286.               [out] Address of the caller's pointer variable that will
  287.               receive the requested interface pointer.
  288.   Modifies: .
  289.   Returns:  HRESULT
  290.               Returned by the delegated outer QueryInterface call.
  291. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  292. STDMETHODIMP COUtilityCar::CImpICar::QueryInterface(
  293.                REFIID riid,
  294.                PPVOID ppv)
  295. {
  296.   LOG("S: COUtilityCar::CImpICar::QueryInterface. Delegating.");
  297.   // Delegate this call to the outer object's QueryInterface.
  298.   return m_pUnkOuter->QueryInterface(riid, ppv);
  299. }
  300. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  301.   Method:   COUtilityCar::CImpICar::AddRef
  302.   Summary:  The AddRef IUnknown member of this ICar interface
  303.             implementation that delegates to m_pUnkOuter, whatever it is.
  304.   Args:     void
  305.   Modifies: m_cRefI.
  306.   Returns:  ULONG
  307.               Returned by the delegated outer AddRef call.
  308. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  309. STDMETHODIMP_(ULONG) COUtilityCar::CImpICar::AddRef(void)
  310. {
  311.   // Increment the Interface Reference Count.
  312.   ++m_cRefI;
  313.   LOGF1("S: COUtilityCar::CImpICar::Addref. Delegating. New cI=%i.", m_cRefI);
  314.   // Delegate this call to the outer object's AddRef.
  315.   return m_pUnkOuter->AddRef();
  316. }
  317. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  318.   Method:   COUtilityCar::CImpICar::Release
  319.   Summary:  The Release IUnknown member of this ICar interface
  320.             implementation that delegates to m_pUnkOuter, whatever it is.
  321.   Args:     void
  322.   Modifies: .
  323.   Returns:  ULONG
  324.               Returned by the delegated outer Release call.
  325. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  326. STDMETHODIMP_(ULONG) COUtilityCar::CImpICar::Release(void)
  327. {
  328.   // Decrement the Interface Reference Count.
  329.   --m_cRefI;
  330.   LOGF1("S: COUtilityCar::CImpICar::Release. Delegating. New cI=%i.", m_cRefI);
  331.   // Delegate this call to the outer object's Release.
  332.   return m_pUnkOuter->Release();
  333. }
  334. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  335.   Method:   COUtilityCar::CImpICar::Shift
  336.   Summary:  The Shift member method of this ICar interface implementation.
  337.             A simple empty method on a COUtilityCar COM object for tutorial
  338.             purposes.  Presumably if this Car object were modeling
  339.             a real Car then the Shift method would shift to the specified
  340.             gear.
  341.   Args:     short nGear
  342.               0 - Neutral; 1 - 5 First 5 forward gears; 6 - Reverse.
  343.   Modifies: .
  344.   Returns:  HRESULT
  345.               NOERROR
  346. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  347. STDMETHODIMP COUtilityCar::CImpICar::Shift(
  348.                short nGear)
  349. {
  350.   LOGF1("S: COUtilityCar::CImpICar::Shift. Delegating. nGear=%i.",nGear);
  351.   m_pBackObj->m_pICar->Shift(nGear);
  352.   return NOERROR;
  353. }
  354. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  355.   Method:   COUtilityCar::CImpICar::Clutch
  356.   Summary:  The Clutch member method of this ICar interface implementation.
  357.             A simple empty method on a COUtilityCar COM object for tutorial
  358.             purposes.  Presumably if this Car object were modeling
  359.             a real Car then the Clutch method would engage the clutch the
  360.             specified amount.
  361.   Args:     short nEngaged)
  362.               Percent clutch is engaged (0 to 100%).
  363.   Modifies: .
  364.   Returns:  HRESULT
  365.               NOERROR
  366. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  367. STDMETHODIMP COUtilityCar::CImpICar::Clutch(
  368.                short nEngaged)
  369. {
  370.   LOGF1("S: COUtilityCar::CImpICar::Clutch. Delegating. nEngaged=%i.",nEngaged);
  371.   m_pBackObj->m_pICar->Clutch(nEngaged);
  372.   return NOERROR;
  373. }
  374. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  375.   Method:   COUtilityCar::CImpICar::Speed
  376.   Summary:  The Propel member method of this ICar interface implementation.
  377.             A simple empty method on a COUtilityCar COM object for tutorial
  378.             purposes.  Presumably if this Car object were modeling
  379.             a real Car then this method would accelerate/brake to bring
  380.             the car to the specified speed.
  381.   Args:     short nMph
  382.               New speed in miles per hour.
  383.   Modifies: .
  384.   Returns:  HRESULT
  385.               NOERROR
  386. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  387. STDMETHODIMP COUtilityCar::CImpICar::Speed(
  388.                short nMph)
  389. {
  390.   LOGF1("S: COUtilityCar::CImpICar::Speed. Delegating. nMph=%i.",nMph);
  391.   m_pBackObj->m_pICar->Speed(nMph);
  392.   return NOERROR;
  393. }
  394. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  395.   Method:   COUtilityCar::CImpICar::Steer
  396.   Summary:  The Steer member method of this ICar interface implementation.
  397.             A simple empty method on a COUtilityCar COM object for tutorial
  398.             purposes.  Presumably if this Car object were modeling
  399.             a real Car then the Steer method would set the steering
  400.             angle of the Car.
  401.   Args:     short nAngle)
  402.               0 degrees straight ahead, -45 Full left, +45 Full right.
  403.   Modifies: .
  404.   Returns:  HRESULT
  405.               NOERROR
  406. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  407. STDMETHODIMP COUtilityCar::CImpICar::Steer(
  408.                short nAngle)
  409. {
  410.   LOGF1("S: COUtilityCar::CImpICar::Steer. Delegating. nAngle=%i.",nAngle);
  411.   m_pBackObj->m_pICar->Steer(nAngle);
  412.   return NOERROR;
  413. }
  414. /*---------------------------------------------------------------------------
  415.   COUtilityCar's nested implementation of the IUtility interface including
  416.   Constructor, Destructor, QueryInterface, AddRef, Release,
  417.   Offroad, and Winch.
  418. ---------------------------------------------------------------------------*/
  419. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  420.   Method:   COUtilityCar::CImpIUtility::CImpIUtility
  421.   Summary:  Constructor for the CImpIUtility interface instantiation.
  422.   Args:     COUtilityCar* pBackObj,
  423.               Back pointer to the parent outer object.
  424.             IUnknown* pUnkOuter)
  425.               Pointer to the outer Unknown.  For delegation.
  426.   Modifies: m_cRefI, m_pBackObj, m_pUnkOuter.
  427.   Returns:  void
  428. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  429. COUtilityCar::CImpIUtility::CImpIUtility(
  430.   COUtilityCar* pBackObj,
  431.   IUnknown* pUnkOuter)
  432. {
  433.   // Init the Interface Ref Count (used for debugging only).
  434.   m_cRefI = 0;
  435.   // Init the Back Object Pointer to point to the outer object.
  436.   m_pBackObj = pBackObj;
  437.   // Init the CImpIUtility interface's delegating Unknown pointer.  We use
  438.   // the Back Object pointer for IUnknown delegation here if we are not
  439.   // being aggregated.  If we are being aggregated we use the supplied
  440.   // pUnkOuter for IUnknown delegation.  In either case the pointer
  441.   // assignment requires no AddRef because the CImpIUtility lifetime is
  442.   // quaranteed by the lifetime of the parent object in which
  443.   // CImpIUtility is nested.
  444.   if (NULL == pUnkOuter)
  445.   {
  446.     m_pUnkOuter = pBackObj;
  447.     LOG("S: COUtilityCar::CImpIUtility Constructor. Non-Aggregating.");
  448.   }
  449.   else
  450.   {
  451.     m_pUnkOuter = pUnkOuter;
  452.     LOG("S: COUtilityCar::CImpIUtility Constructor. Aggregating.");
  453.   }
  454.   return;
  455. }
  456. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  457.   Method:   COUtilityCar::CImpIUtility::~CImpIUtility
  458.   Summary:  Destructor for the CImpIUtility interface instantiation.
  459.   Args:     void
  460.   Modifies: .
  461.   Returns:  void
  462. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  463. COUtilityCar::CImpIUtility::~CImpIUtility(void)
  464. {
  465.   LOG("S: COUtilityCar::CImpIUtility Destructor.");
  466.   return;
  467. }
  468. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  469.   Method:   COUtilityCar::CImpIUtility::QueryInterface
  470.   Summary:  The QueryInterface IUnknown member of this IUtility interface
  471.             implementation that delegates to m_pUnkOuter, whatever it is.
  472.   Args:     REFIID riid,
  473.               [in] GUID of the Interface being requested.
  474.             PPVOID ppv)
  475.               [out] Address of the caller's pointer variable that will
  476.               receive the requested interface pointer.
  477.   Modifies: .
  478.   Returns:  HRESULT
  479.               Returned by the delegated outer QueryInterface call.
  480. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  481. STDMETHODIMP COUtilityCar::CImpIUtility::QueryInterface(
  482.                REFIID riid,
  483.                PPVOID ppv)
  484. {
  485.   LOG("S: COUtilityCar::CImpIUtility::QueryInterface. Delegating.");
  486.   // Delegate this call to the outer object's QueryInterface.
  487.   return m_pUnkOuter->QueryInterface(riid, ppv);
  488. }
  489. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  490.   Method:   COUtilityCar::CImpIUtility::AddRef
  491.   Summary:  The AddRef IUnknown member of this IUtility interface
  492.             implementation that delegates to m_pUnkOuter, whatever it is.
  493.   Args:     void
  494.   Modifies: m_cRefI.
  495.   Returns:  ULONG
  496.               Returned by the delegated outer AddRef call.
  497. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  498. STDMETHODIMP_(ULONG) COUtilityCar::CImpIUtility::AddRef(void)
  499. {
  500.   // Increment the Interface Reference Count.
  501.   ++m_cRefI;
  502.   LOGF1("S: COUtilityCar::CImpIUtility::Addref. Delegating. New cI=%i.", m_cRefI);
  503.   // Delegate this call to the outer object's AddRef.
  504.   return m_pUnkOuter->AddRef();
  505. }
  506. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  507.   Method:   COUtilityCar::CImpIUtility::Release
  508.   Summary:  The Release IUnknown member of this IUtility interface
  509.             implementation that delegates to m_pUnkOuter, whatever it is.
  510.   Args:     void
  511.   Modifies: .
  512.   Returns:  ULONG
  513.               Returned by the delegated outer Release call.
  514. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  515. STDMETHODIMP_(ULONG) COUtilityCar::CImpIUtility::Release(void)
  516. {
  517.   // Decrement the Interface Reference Count.
  518.   --m_cRefI;
  519.   LOGF1("S: COUtilityCar::CImpIUtility::Release. Delegating. New cI=%i.", m_cRefI);
  520.   // Delegate this call to the outer object's Release.
  521.   return m_pUnkOuter->Release();
  522. }
  523. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  524.   Method:   COUtilityCar::CImpIUtility::Offroad
  525.   Summary:  The Offroad member method of this IUtility interface
  526.             implementation.  A simple empty method on a COUtilityCar
  527.             COM object for tutorial purposes.  Presumably if this
  528.             UtilityCar object were modeling a real Car then the Offroad
  529.             method would function the 4-wheel drive transfer case and
  530.             shift it to the specified 4-wheel drive mode.
  531.   Args:     short nGear
  532.               0 = 2H or regular 2-wheel drive;
  533.               1 = 4H or 4-wheel drive high speed;
  534.               2 = neutral; and
  535.               3 = 4L or 4-wheel drive low speed).
  536.   Modifies: .
  537.   Returns:  HRESULT
  538.               NOERROR
  539. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  540. STDMETHODIMP COUtilityCar::CImpIUtility::Offroad(
  541.                short nGear)
  542. {
  543.   LOGF1("S: COUtilityCar::CImpIUtility::Offroad. Called. nGear=%i.",nGear);
  544.   return NOERROR;
  545. }
  546. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  547.   Method:   COUtilityCar::CImpIUtility::Winch
  548.   Summary:  The Winch member method of this IUtility interface
  549.             implementation.  A simple empty method on a COUtilityCar COM
  550.             object for tutorial purposes.  Presumably if this UtilityCar
  551.             object were modeling a real Car then the Winch method would
  552.             turn on/off the front-mounted Winch to the specified RPMs.
  553.   Args:     short nRpm
  554.               0 = off; 1 - 50 RPM.
  555.   Modifies: .
  556.   Returns:  HRESULT
  557.               NOERROR
  558. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  559. STDMETHODIMP COUtilityCar::CImpIUtility::Winch(
  560.                short nRpm)
  561. {
  562.   LOGF1("S: COUtilityCar::CImpIUtility::Winch. Called. nRpm=%i.",nRpm);
  563.   return NOERROR;
  564. }