home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / locclien / locclien.cpp next >
C/C++ Source or Header  |  1997-08-30  |  40KB  |  1,177 lines

  1. /*+==========================================================================
  2.   File:      LOCCLIEN.CPP
  3.  
  4.   Summary:   Based largely on the DLLCLIEN.EXE application code, this
  5.              module is meant to use COM to load and access some COM
  6.              components in a separate Local EXE COM Server (LOCSERVE built
  7.              in the sibling LOCSERVE directory).  Thus to run LOCCLIEN you
  8.              must build LOCSERVE first.  Like DLLCLIEN, this app composes
  9.              its own native composite COM object, COUtilityCruiseCar. In
  10.              this client application, COUtilityCruiseCar is constructed by
  11.              containment reuse of the existing COCruiseCar COM component
  12.              (provided by the LOCSERVE.EXE local server). This application
  13.              augments that existing component with a native implementation
  14.              of the IUtility interface.  Thus, this application showcases
  15.              mixed composition through containment of an existing
  16.              composite object that is itself constructed via aggregation.
  17.  
  18.              Also like DLLCLIEN this client application separately
  19.              instantiates the other car-related objects of LOCSERVE and
  20.              exercises them (ie, for Car, UtilityCar, CruiseCar, and
  21.              UtilityCruiseCar).  To this end, LOCCLIEN provides a set of
  22.              menus for these Car related objects with selections for the
  23.              respective methods of the Interfaces exposed by those COM
  24.              Objects.
  25.  
  26.              Unlike previous InProc client/server pairs, this local
  27.              client/server pair achieves logging of internal server
  28.              behavior in the client's logging display using a different
  29.              method than was provided by the CarSample component.  The
  30.              CarSample facility is not used.
  31.  
  32.              For a comprehensive tutorial code tour of LOCCLIEN's
  33.              contents and offerings see the tutorial LOCCLIEN.HTM file.
  34.              For more specific technical details on the internal workings
  35.              see the comments dispersed throughout the LOCCLIEN source code.
  36.              For more details on the LOCSERVE.EXE that LOCCLIEN works with
  37.              see the LOCSERVE.HTM file in the main tutorial directory.
  38.  
  39.   Classes:   CMainWindow
  40.  
  41.   Functions: InitApplication, WinMain
  42.  
  43.   Origin:    11-20-95: atrent - Editor-inheritance from DLLCLIEN source.
  44.  
  45. ----------------------------------------------------------------------------
  46.   This file is part of the Microsoft COM Tutorial Code Samples.
  47.  
  48.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  49.  
  50.   This source code is intended only as a supplement to Microsoft
  51.   Development Tools and/or on-line documentation.  See these other
  52.   materials for detailed information regarding Microsoft code samples.
  53.  
  54.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  55.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  56.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  57.   PARTICULAR PURPOSE.
  58. ==========================================================================+*/
  59.  
  60. /*--------------------------------------------------------------------------
  61.   We include WINDOWS.H for all Win32 applications.
  62.   We include OLE2.H because we will be calling the COM/OLE Libraries.
  63.   We include INITGUID.H only once (here) in the entire app because we
  64.     will be defining GUIDs and want them as constants in the data segment.
  65.   We include COMMDLG.H because we will be using the Open File and
  66.     potentially other Common dialogs.
  67.   We include APPUTIL.H because we will be building this application using
  68.     the convenient Virtual Window and Dialog classes and other
  69.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  70.   We include MICARS.H and CARGUIDS.H for the common car-related Interface
  71.     class, GUID, and CLSID specifications.
  72.   We include LOCCLIEN.H because it has class and resource definitions
  73.     specific to this LOCCLIEN application.
  74.   We include UTCRUCAR.H because it has COUtilityCar object class.
  75. ---------------------------------------------------------------------------*/
  76. #include <windows.h>
  77. #include <ole2.h>
  78. #include <initguid.h>
  79. #include <commdlg.h>
  80. #include <apputil.h>
  81. #include <micars.h>
  82. #include <carguids.h>
  83. #include "locclien.h"
  84. #include "utcrucar.h"
  85.  
  86.  
  87. // Here is a pointer for use by the global Trace Message logging macros.
  88. CMsgLog* g_pMsgLog = NULL;
  89.  
  90.  
  91. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  92.   Method:   CMainWindow::CMainWindow
  93.  
  94.   Summary:  CMainWindow Constructor.
  95.  
  96.   Args:     .
  97.  
  98.   Modifies: .
  99.  
  100.   Returns:  .
  101. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  102. CMainWindow::CMainWindow()
  103. {
  104.   // Ensure these member variable strings are null strings.
  105.   m_szFileName[0] = 0;
  106.   m_szFileTitle[0] = 0;
  107.  
  108.   // Fill in the Open File Name Common Dialog's OPENFILENAME structure.
  109.   m_ofnFile.lStructSize = sizeof(OPENFILENAME);
  110.   m_ofnFile.hwndOwner = m_hWnd;
  111.   m_ofnFile.hInstance = m_hInst;
  112.   m_ofnFile.lpstrFilter = TEXT(OFN_DEFAULTFILES_STR);
  113.   m_ofnFile.lpstrCustomFilter = NULL;
  114.   m_ofnFile.nMaxCustFilter = 0;
  115.   m_ofnFile.nFilterIndex = 1;
  116.   m_ofnFile.lpstrFile = m_szFileName;
  117.   m_ofnFile.nMaxFile = MAX_PATH;
  118.   m_ofnFile.lpstrInitialDir = TEXT(".");
  119.   m_ofnFile.lpstrFileTitle = m_szFileTitle;
  120.   m_ofnFile.nMaxFileTitle = MAX_PATH;
  121.   m_ofnFile.lpstrTitle = TEXT(OFN_DEFAULTTITLE_STR);
  122.   m_ofnFile.lpstrDefExt = NULL;
  123.   m_ofnFile.Flags = OFN_HIDEREADONLY;
  124.  
  125.   m_pCar = NULL;
  126.   m_pUtilityCar = NULL;
  127.   m_pCruiseCar = NULL;
  128.   m_pUtilityCruiseCar = NULL;
  129.  
  130.   // Null the Message object pointers.
  131.   m_pMsgBox = NULL;
  132.   m_pMsgLog = NULL;
  133. }
  134.  
  135.  
  136. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  137.   Method:   CMainWindow::~CMainWindow
  138.  
  139.   Summary:  CMainWindow Destructor.  Destruction of the main window
  140.             indicates that the application should quit and thus the
  141.             PostQuitMessage API is called.
  142.  
  143.   Args:     .
  144.  
  145.   Modifies: .
  146.  
  147.   Returns:  .
  148. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  149. CMainWindow::~CMainWindow()
  150. {
  151.   // CMainWindow is derived from CVirWindow which traps the WM_DESTROY
  152.   // message and causes a delete of CMainWindow which in turn causes this
  153.   // destructor to run. The WM_DESTROY results when the window is destoyed
  154.   // after a close of the window. Prior to exiting the main message loop:
  155.  
  156.   // We release any and all of the pointers to instantiated COM objects.
  157.   RELEASE_INTERFACE(m_pCar);
  158.   RELEASE_INTERFACE(m_pUtilityCar);
  159.   RELEASE_INTERFACE(m_pCruiseCar);
  160.   RELEASE_INTERFACE(m_pUtilityCruiseCar);
  161.  
  162.   // We delete the CMsgBox and CMsgLog objects that were made in
  163.   // Initinstance.
  164.   DELETE_POINTER(m_pMsgBox);
  165.   DELETE_POINTER(m_pMsgLog);
  166.  
  167.   // We then post a WM_QUIT message to cause an exit of the main thread's
  168.   // message loop and an exit of this instance of the application.
  169.   PostQuitMessage(0);
  170. }
  171.  
  172.  
  173. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  174.   Method:   CMainWindow::GetInterface
  175.  
  176.   Summary:  Convenience method that wraps the QueryInterface call
  177.             and accepts a main COM object IUnknown pointer as an argument.
  178.  
  179.   Args:     IUnknown* pObj,
  180.               Pointer to the COM Object we are getting an interface on.
  181.             REFIID riid,
  182.               The GUID for the interface that we are seeking.
  183.             PPVOID ppv);
  184.               Address of the caller's pointer variable that will
  185.               receive the requested interface pointer.
  186.  
  187.   Modifies: .
  188.  
  189.   Returns:  BOOL.
  190.               TRUE if succeeded.
  191.               FALSE if failed.
  192. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  193. BOOL CMainWindow::GetInterface(
  194.        IUnknown* pObj,
  195.        REFIID riid,
  196.        PPVOID ppv)
  197. {
  198.   BOOL bResult = FALSE;
  199.   HRESULT hr;
  200.  
  201.   *ppv=NULL;
  202.  
  203.   if (NULL != pObj)
  204.   {
  205.     LOG("C: --Obtaining Interface Pointer.");
  206.     hr = pObj->QueryInterface(riid, ppv);
  207.  
  208.     if (FAILED(hr))
  209.     {
  210.       LOGERROR("C: ???? QueryInterface", hr);
  211.     }
  212.     else
  213.     {
  214.       LOGF1("C: Interface obtained. *ppv=0x%X", *ppv);
  215.       bResult = TRUE;
  216.     }
  217.   }
  218.   else
  219.   {
  220.     LOG("C: ???? Create an object first.");
  221.   }
  222.  
  223.   return (bResult);
  224. }
  225.  
  226.  
  227. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  228.   Method:   CMainWindow::DoMenu
  229.  
  230.   Summary:  Dispatch and handle the main menu commands.
  231.  
  232.   Args:     WPARAM wParam,
  233.               First message parameter (word sized).
  234.             LPARAM lParam)
  235.               Second message parameter (long sized).
  236.  
  237.   Modifies: m_ofnFile, ...
  238.  
  239.   Returns:  LRESULT
  240.               Standard Windows WindowProc return value.
  241. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  242. LRESULT CMainWindow::DoMenu(
  243.           WPARAM wParam,
  244.           LPARAM lParam)
  245. {
  246.   LRESULT lResult = FALSE;
  247.   HRESULT hr;
  248.   HMENU hMenu  = ::GetMenu(m_hWnd);
  249.   // Here are some interface pointers used to call methods on
  250.   // our COUtilityCar, COCruiseCar, and COUtilityCruiseCar COM objects.
  251.   ICar* pICar;
  252.   IUtility* pIUtility;
  253.   ICruise* pICruise;
  254.  
  255.   switch (LOWORD(wParam))
  256.   {
  257.     //----------------------------------------------------------------------
  258.     // Handle File Menu Commands.
  259.     //----------------------------------------------------------------------
  260.     case IDM_FILE_EXIT:
  261.       // The user commands us to exit this application so we tell the
  262.       // Main window to close itself.
  263.       ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
  264.       break;
  265.  
  266.     //----------------------------------------------------------------------
  267.     // Handle Car Menu Commands.
  268.     //----------------------------------------------------------------------
  269.     case IDM_CAR_CREATE:
  270.       LOG("C: === Car Menu: Create.");
  271.       if (NULL == m_pCar)
  272.       {
  273.         // Call COM service to create an instance.
  274.         hr = CoCreateInstance(
  275.                CLSID_LocCar,
  276.                NULL,
  277.                CLSCTX_LOCAL_SERVER,
  278.                IID_IUnknown,
  279.                (PPVOID)&m_pCar);
  280.         if (SUCCEEDED(hr))
  281.         {
  282.           ::CheckMenuItem(
  283.               hMenu,
  284.               IDM_CAR_CREATE,
  285.               MF_BYCOMMAND | MF_CHECKED);
  286.         }
  287.         else
  288.         {
  289.           LOGERROR("C: ???? CoCreateInstance",hr);
  290.         }
  291.       }
  292.       else
  293.         LOG("C: ???? Car already exists.");
  294.       break;
  295.     case IDM_CAR_RELEASE:
  296.       LOG("C: === Car Menu: Release.");
  297.       if (NULL != m_pCar)
  298.       {
  299.         RELEASE_INTERFACE(m_pCar);
  300.         // We ask COM to unload any unused COM Servers.
  301.         CoFreeUnusedLibraries();
  302.         ::CheckMenuItem(
  303.             hMenu,
  304.             IDM_CAR_CREATE,
  305.             MF_BYCOMMAND | MF_UNCHECKED);
  306.       }
  307.       else
  308.         LOG("C: ???? No Car to Release.");
  309.       break;
  310.     case IDM_CAR_SHIFT:
  311.       LOG("C: === Car Menu: ICar::Shift");
  312.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  313.       {
  314.         LOG("C: --Calling pICar->Shift");
  315.         pICar->Shift(1);
  316.         LOG("C: --Releasing pICar");
  317.         pICar->Release();
  318.       }
  319.       break;
  320.     case IDM_CAR_CLUTCH:
  321.       LOG("C: === Car Menu: ICar::Clutch");
  322.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  323.       {
  324.         LOG("C: --Calling pICar->Clutch");
  325.         pICar->Clutch(100);
  326.         LOG("C: --Releasing pICar");
  327.         pICar->Release();
  328.       }
  329.       break;
  330.     case IDM_CAR_SPEED:
  331.       LOG("C: === Car Menu: ICar::Speed");
  332.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  333.       {
  334.         LOG("C: --Calling pICar->Speed");
  335.         pICar->Speed(20);
  336.         LOG("C: --Releasing pICar");
  337.         pICar->Release();
  338.       }
  339.       break;
  340.     case IDM_CAR_STEER:
  341.       LOG("C: === Car Menu: ICar::Steer");
  342.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  343.       {
  344.         LOG("C: --Calling pICar->Steer");
  345.         pICar->Steer(0);
  346.         LOG("C: --Releasing pICar");
  347.         pICar->Release();
  348.       }
  349.       break;
  350.  
  351.     //----------------------------------------------------------------------
  352.     // Handle UtilityCar Menu Commands.
  353.     //----------------------------------------------------------------------
  354.     case IDM_UCAR_CREATE:
  355.       LOG("C: === UtilityCar Menu: Create.");
  356.       if (NULL == m_pUtilityCar)
  357.       {
  358.         // Call COM service to create an instance.
  359.         hr = CoCreateInstance(
  360.                CLSID_LocUtilityCar,
  361.                NULL,
  362.                CLSCTX_LOCAL_SERVER,
  363.                IID_IUnknown,
  364.                (PPVOID)&m_pUtilityCar);
  365.         if (SUCCEEDED(hr))
  366.         {
  367.           ::CheckMenuItem(
  368.               hMenu,
  369.               IDM_UCAR_CREATE,
  370.               MF_BYCOMMAND | MF_CHECKED);
  371.         }
  372.         else
  373.         {
  374.           LOGERROR("C: ???? CoCreateInstance",hr);
  375.         }
  376.       }
  377.       else
  378.         LOG("C: ???? UtilityCar already exists.");
  379.       break;
  380.     case IDM_UCAR_RELEASE:
  381.       LOG("C: === UtilityCar Menu: Release.");
  382.       if (NULL != m_pUtilityCar)
  383.       {
  384.         RELEASE_INTERFACE(m_pUtilityCar);
  385.         // We ask COM to unload any unused COM Servers.
  386.         CoFreeUnusedLibraries();
  387.         ::CheckMenuItem(
  388.             hMenu,
  389.             IDM_UCAR_CREATE,
  390.             MF_BYCOMMAND | MF_UNCHECKED);
  391.       }
  392.       else
  393.         LOG("C: ???? No UtilityCar to Release.");
  394.       break;
  395.     case IDM_UCAR_SHIFT:
  396.       LOG("C: === UtilityCar Menu: ICar::Shift");
  397.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  398.       {
  399.         LOG("C: --Calling pICar->Shift");
  400.         pICar->Shift(2);
  401.         LOG("C: --Releasing pICar");
  402.         pICar->Release();
  403.       }
  404.       break;
  405.     case IDM_UCAR_CLUTCH:
  406.       LOG("C: === UtilityCar Menu: ICar::Clutch");
  407.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  408.       {
  409.         LOG("C: --Calling pICar->Clutch");
  410.         pICar->Clutch(100);
  411.         LOG("C: --Releasing pICar");
  412.         pICar->Release();
  413.       }
  414.       break;
  415.     case IDM_UCAR_SPEED:
  416.       LOG("C: === UtilityCar Menu: ICar::Speed");
  417.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  418.       {
  419.         LOG("C: --Calling pICar->Speed");
  420.         pICar->Speed(30);
  421.         LOG("C: --Releasing pICar");
  422.         pICar->Release();
  423.       }
  424.       break;
  425.     case IDM_UCAR_STEER:
  426.       LOG("C: === UtilityCar Menu: ICar::Steer");
  427.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  428.       {
  429.         LOG("C: --Calling pICar->Steer");
  430.         pICar->Steer(10);
  431.         LOG("C: --Releasing pICar");
  432.         pICar->Release();
  433.       }
  434.       break;
  435.     case IDM_UCAR_OFFROAD:
  436.       LOG("C: === UtilityCar Menu: IUtility::Offroad");
  437.       if (GetInterface(m_pUtilityCar, IID_IUtility, (PPVOID)&pIUtility))
  438.       {
  439.         LOG("C: --Calling pIUtility->Offroad");
  440.         pIUtility->Offroad(1);
  441.         LOG("C: --Releasing pIUtility");
  442.         pIUtility->Release();
  443.       }
  444.       break;
  445.     case IDM_UCAR_WINCH:
  446.       LOG("C: === UtilityCar Menu: IUtility::Winch");
  447.       if (GetInterface(m_pUtilityCar, IID_IUtility, (PPVOID)&pIUtility))
  448.       {
  449.         LOG("C: --Calling pIUtility->Winch");
  450.         pIUtility->Winch(0);
  451.         LOG("C: --Releasing pIUtility");
  452.         pIUtility->Release();
  453.       }
  454.       break;
  455.  
  456.     //----------------------------------------------------------------------
  457.     // Handle CruiseCar Menu Commands.
  458.     //----------------------------------------------------------------------
  459.     case IDM_CCAR_CREATE:
  460.       LOG("C: === CruiseCar Menu: Create.");
  461.       if (NULL == m_pCruiseCar)
  462.       {
  463.         // Call COM service to create an instance.
  464.         hr = CoCreateInstance(
  465.                CLSID_LocCruiseCar,
  466.                NULL,
  467.                CLSCTX_LOCAL_SERVER,
  468.                IID_IUnknown,
  469.                (PPVOID)&m_pCruiseCar);
  470.         if (SUCCEEDED(hr))
  471.         {
  472.           ::CheckMenuItem(
  473.               hMenu,
  474.               IDM_CCAR_CREATE,
  475.               MF_BYCOMMAND | MF_CHECKED);
  476.         }
  477.         else
  478.         {
  479.           LOGERROR("C: ???? CoCreateInstance",hr);
  480.         }
  481.       }
  482.       else
  483.         LOG("C: ???? CruiseCar already exists.");
  484.       break;
  485.     case IDM_CCAR_RELEASE:
  486.       LOG("C: === CruiseCar Menu: Release.");
  487.       if (NULL != m_pCruiseCar)
  488.       {
  489.         RELEASE_INTERFACE(m_pCruiseCar);
  490.         // We ask COM to unload any unused COM Servers.
  491.         CoFreeUnusedLibraries();
  492.         ::CheckMenuItem(
  493.             hMenu,
  494.             IDM_CCAR_CREATE,
  495.             MF_BYCOMMAND | MF_UNCHECKED);
  496.       }
  497.       else
  498.         LOG("C: ???? No CruiseCar to Release.");
  499.       break;
  500.     case IDM_CCAR_SHIFT:
  501.       LOG("C: === CruiseCar Menu: ICar::Shift");
  502.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  503.       {
  504.         LOG("C: --Calling pICar->Shift");
  505.         pICar->Shift(4);
  506.         LOG("C: --Releasing pICar");
  507.         pICar->Release();
  508.       }
  509.       break;
  510.     case IDM_CCAR_CLUTCH:
  511.       LOG("C: === CruiseCar Menu: ICar::Clutch");
  512.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  513.       {
  514.         LOG("C: --Calling pICar->Clutch");
  515.         pICar->Clutch(100);
  516.         LOG("C: --Releasing pICar");
  517.         pICar->Release();
  518.       }
  519.       break;
  520.     case IDM_CCAR_SPEED:
  521.       LOG("C: === CruiseCar Menu: ICar::Speed");
  522.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  523.       {
  524.         LOG("C: --Calling pICar->Speed");
  525.         pICar->Speed(60);
  526.         LOG("C: --Releasing pICar");
  527.         pICar->Release();
  528.       }
  529.       break;
  530.     case IDM_CCAR_STEER:
  531.       LOG("C: === CruiseCar Menu: ICar::Steer");
  532.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  533.       {
  534.         LOG("C: --Calling pICar->Steer");
  535.         pICar->Steer(0);
  536.         LOG("C: --Releasing pICar");
  537.         pICar->Release();
  538.       }
  539.       break;
  540.     case IDM_CCAR_ENGAGE:
  541.       LOG("C: === CruiseCar Menu: ICruise::Engage");
  542.       if (GetInterface(m_pCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  543.       {
  544.         LOG("C: --Calling pICruise->Engage");
  545.         pICruise->Engage(TRUE);
  546.         LOG("C: --Releasing pICruise");
  547.         pICruise->Release();
  548.       }
  549.       break;
  550.     case IDM_CCAR_ADJUST:
  551.       LOG("C: === CruiseCar Menu: ICruise::Adjust");
  552.       if (GetInterface(m_pCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  553.       {
  554.         LOG("C: --Calling pICruise->Adjust");
  555.         pICruise->Adjust(FALSE);
  556.         LOG("C: --Releasing pICruise");
  557.         pICruise->Release();
  558.       }
  559.       break;
  560.  
  561.     //----------------------------------------------------------------------
  562.     // Handle UtilityCruiseCar Menu Commands.
  563.     //----------------------------------------------------------------------
  564.     case IDM_UCRU_CREATE:
  565.       LOG("C: === UtilityCruiseCar Menu: Create.");
  566.       if (NULL == m_pUtilityCruiseCar)
  567.       {
  568.         // Call a create function to create an instance.
  569.         hr = CreateUtilityCruiseCar(
  570.                NULL,
  571.                IID_IUnknown,
  572.                (PPVOID)&m_pUtilityCruiseCar);
  573.         if (SUCCEEDED(hr))
  574.         {
  575.           ::CheckMenuItem(
  576.               hMenu,
  577.               IDM_UCRU_CREATE,
  578.               MF_BYCOMMAND | MF_CHECKED);
  579.         }
  580.         else
  581.         {
  582.           LOGERROR("C: ???? UtilityCruiseCar creation",hr);
  583.         }
  584.       }
  585.       else
  586.         LOG("C: ???? UtilityCruiseCar already exists.");
  587.       break;
  588.     case IDM_UCRU_RELEASE:
  589.       LOG("C: === UtilityCruiseCar Menu: Release.");
  590.       if (NULL != m_pUtilityCruiseCar)
  591.       {
  592.         RELEASE_INTERFACE(m_pUtilityCruiseCar);
  593.         // We ask COM to unload any unused COM Servers.
  594.         CoFreeUnusedLibraries();
  595.         ::CheckMenuItem(
  596.             hMenu,
  597.             IDM_UCRU_CREATE,
  598.             MF_BYCOMMAND | MF_UNCHECKED);
  599.       }
  600.       else
  601.         LOG("C: ???? No UtilityCruiseCar to Release.");
  602.       break;
  603.     case IDM_UCRU_SHIFT:
  604.       LOG("C: === UtilityCruiseCar Menu: ICar::Shift");
  605.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  606.       {
  607.         LOG("C: --Calling pICar->Shift");
  608.         pICar->Shift(1);
  609.         LOG("C: --Releasing pICar");
  610.         pICar->Release();
  611.       }
  612.       break;
  613.     case IDM_UCRU_CLUTCH:
  614.       LOG("C: === UtilityCruiseCar Menu: ICar::Clutch");
  615.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  616.       {
  617.         LOG("C: --Calling pICar->Clutch");
  618.         pICar->Clutch(80);
  619.         LOG("C: --Releasing pICar");
  620.         pICar->Release();
  621.       }
  622.       break;
  623.     case IDM_UCRU_SPEED:
  624.       LOG("C: === UtilityCruiseCar Menu: ICar::Speed");
  625.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  626.       {
  627.         LOG("C: --Calling pICar->Speed");
  628.         pICar->Speed(10);
  629.         LOG("C: --Releasing pICar");
  630.         pICar->Release();
  631.       }
  632.       break;
  633.     case IDM_UCRU_STEER:
  634.       LOG("C: === UtilityCruiseCar Menu: ICar::Steer");
  635.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  636.       {
  637.         LOG("C: --Calling pICar->Steer");
  638.         pICar->Steer(10);
  639.         LOG("C: --Releasing pICar");
  640.         pICar->Release();
  641.       }
  642.       break;
  643.     case IDM_UCRU_ENGAGE:
  644.       LOG("C: === UtilityCruiseCar Menu: ICruise::Engage");
  645.       if (GetInterface(m_pUtilityCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  646.       {
  647.         LOG("C: --Calling pICruise->Engage");
  648.         pICruise->Engage(FALSE);
  649.         LOG("C: --Releasing pICruise");
  650.         pICruise->Release();
  651.       }
  652.       break;
  653.     case IDM_UCRU_ADJUST:
  654.       LOG("C: === UtilityCruiseCar Menu: ICruise::Adjust");
  655.       if (GetInterface(m_pUtilityCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  656.       {
  657.         LOG("C: --Calling pICruise->Adjust");
  658.         pICruise->Adjust(FALSE);
  659.         LOG("C: --Releasing pICruise");
  660.         pICruise->Release();
  661.       }
  662.       break;
  663.     case IDM_UCRU_OFFROAD:
  664.       LOG("C: === UtilityCruiseCar Menu: IUtility::Offroad");
  665.       if (GetInterface(m_pUtilityCruiseCar, IID_IUtility, (PPVOID)&pIUtility))
  666.       {
  667.         LOG("C: --Calling pIUtility->Offroad");
  668.         pIUtility->Offroad(3);
  669.         LOG("C: --Releasing pIUtility");
  670.         pIUtility->Release();
  671.       }
  672.       break;
  673.     case IDM_UCRU_WINCH:
  674.       LOG("C: === UtilityCruiseCar Menu: IUtility::Winch");
  675.       if (GetInterface(m_pUtilityCruiseCar, IID_IUtility, (PPVOID)&pIUtility))
  676.       {
  677.         LOG("C: --Calling pIUtility->Winch");
  678.         pIUtility->Winch(0);
  679.         LOG("C: --Releasing pIUtility");
  680.         pIUtility->Release();
  681.       }
  682.       break;
  683.  
  684.     //----------------------------------------------------------------------
  685.     // Handle Log Menu Commands.
  686.     //----------------------------------------------------------------------
  687.     case IDM_LOG_LOGCLEAR:
  688.       // Clear the message log.
  689.       m_pMsgLog->Clear();
  690.       // Use macro to log messages.
  691.       LOGID(IDS_START_MESSAGE_LOG);
  692.       break;
  693.     case IDM_LOG_LOGGING:
  694.       // Toggle the state of the Message Logging.
  695.       // Toggle the checkmark indicator on the menu selection as well.
  696.       {
  697.         HMENU hMenu  = ::GetMenu(m_hWnd);
  698.         BOOL bLogging = ::GetMenuState(
  699.                             hMenu,
  700.                             IDM_LOG_LOGGING,
  701.                             MF_BYCOMMAND) & MF_CHECKED;
  702.         if (bLogging)
  703.         {
  704.           m_pMsgLog->Logging(FALSE);
  705.           ::CheckMenuItem(
  706.               hMenu,
  707.               IDM_LOG_LOGGING,
  708.               MF_BYCOMMAND | MF_UNCHECKED);
  709.         }
  710.         else
  711.         {
  712.           m_pMsgLog->Logging(TRUE);
  713.           ::CheckMenuItem(
  714.               hMenu,
  715.               IDM_LOG_LOGGING,
  716.               MF_BYCOMMAND | MF_CHECKED);
  717.         }
  718.       }
  719.       break;
  720.     case IDM_LOG_COPYCLIP:
  721.       // Copy trace message log to clipboard.
  722.       m_pMsgLog->Copy();
  723.       break;
  724.  
  725.     //----------------------------------------------------------------------
  726.     // Handle Help Menu Commands.
  727.     //----------------------------------------------------------------------
  728.     case IDM_HELP_CONTENTS:
  729.       // We have some stubbed support here for bringing up the online
  730.       // Help for this application.
  731.       ReadHelp(m_hWnd, m_szHelpFile);
  732.       break;
  733.     case IDM_HELP_TUTORIAL:
  734.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  735.       // tutorial narrative file associated with this tutorial code sample.
  736.       ReadTutorial(m_hInst, m_hWnd, TEXT(HTML_FILE_EXT));
  737.       break;
  738.     case IDM_HELP_TUTSERVER:
  739.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  740.       // tutorial narrative file associated with the LOCSERVE COM server.
  741.       ReadTutorial(m_hInst, m_hWnd, TEXT(SERVER_TUTFILE_STR));
  742.       break;
  743.     case IDM_HELP_TUTMARSHAL:
  744.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  745.       // tutorial narrative file associated with the COM marshaling server.
  746.       ReadTutorial(m_hInst, m_hWnd, TEXT(MARSHAL_TUTFILE_STR));
  747.       break;
  748.     case IDM_HELP_READSOURCE:
  749.       // Call the APPUTIL utility function ReadSource to allow the
  750.       // user to open and read any of the source files of LOCCLIEN.
  751.       ReadSource(m_hWnd, &m_ofnFile);
  752.       break;
  753.     case IDM_HELP_ABOUT:
  754.       {
  755.         CAboutBox dlgAboutBox;
  756.  
  757.         LOG("C: === Help Menu: About LOCCLIEN.");
  758.         // Show the standard About Box dialog for this EXE by telling the
  759.         // dialog C++ object to show itself by invoking its ShowDialog
  760.         // method.  Pass it this EXE instance and the parent window handle.
  761.         // Use a dialog resource ID for the dialog template stored in
  762.         // this EXE module's resources.
  763.         dlgAboutBox.ShowDialog(
  764.           m_hInst,
  765.           MAKEINTRESOURCE(IDM_HELP_ABOUT),
  766.           m_hWnd);
  767.       }
  768.       break;
  769.     case IDM_HELP_ABOUTSERVER:
  770.       {
  771.         // Post a message to the Server to show its AboutBox dialog.
  772.         LOG("C: === Help Menu: About LOCSERVE.");
  773.  
  774.         HWND hWnd = FindWindow(NULL, TEXT(SERVER_WINDOW_TITLE_STR));
  775.         if (NULL != hWnd)
  776.           PostMessage(hWnd, WM_COMMAND, IDM_HELP_ABOUT, NULL);
  777.       }
  778.       break;
  779.  
  780.     default:
  781.       // Defer all messages NOT handled here to the Default Window Proc.
  782.       lResult = ::DefWindowProc(m_hWnd, WM_COMMAND, wParam, lParam);
  783.       break;
  784.   }
  785.  
  786.   return(lResult);
  787. }
  788.  
  789.  
  790. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  791.   Method:   CMainWindow::InitInstance
  792.  
  793.   Summary:  Instantiates an instance of the main application window.
  794.             This method must be called only once, immediately after
  795.             window class construction.  We take care to delete 'this'
  796.             CMainWindow if we must return the error condition FALSE.
  797.  
  798.   Args:     HINSTANCE hInstance,
  799.               Handle of the application instance.
  800.             int nCmdShow)
  801.               Command to pass to ShowWindow.
  802.  
  803.   Modifies: m_szHelpFile, m_pMsgBox, m_pMsgLog.
  804.  
  805.   Returns:  BOOL.
  806.               TRUE if succeeded.
  807.               FALSE if failed.
  808. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  809. BOOL CMainWindow::InitInstance(
  810.        HINSTANCE hInstance,
  811.        int nCmdShow)
  812. {
  813.   BOOL bOk = FALSE;
  814.   HWND hWnd;
  815.  
  816.   // Create the Message Box and Message Log objects.
  817.   m_pMsgBox = new CMsgBox;
  818.   m_pMsgLog = new CMsgLog;
  819.  
  820.   if (NULL != m_pMsgBox && NULL != m_pMsgLog)
  821.   {
  822.     // Note, the Create method sets the m_hWnd member so we don't
  823.     // need to set it explicitly here first.
  824.  
  825.     // Here is the create of this window.  Size the window reasonably.
  826.     // Create sets both m_hInst and m_hWnd.
  827.     hWnd = Create(
  828.              TEXT(MAIN_WINDOW_CLASS_NAME_STR),
  829.              TEXT(MAIN_WINDOW_TITLE_STR),
  830.              WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
  831.                | WS_MAXIMIZEBOX | WS_THICKFRAME,
  832.              CW_USEDEFAULT,
  833.              CW_USEDEFAULT,
  834.              ::GetSystemMetrics(SM_CXSCREEN)*3/5,
  835.              ::GetSystemMetrics(SM_CYSCREEN)*3/5,
  836.              NULL,
  837.              NULL,
  838.              hInstance);
  839.     if (hWnd)
  840.     {
  841.       // Ensure the new window is shown on screen and its content is painted.
  842.       ::ShowWindow(m_hWnd, nCmdShow);
  843.       ::UpdateWindow(m_hWnd);
  844.  
  845.       // Build a path to where the help file should be (it should be in
  846.       // the same directory as the .EXE but with the .HTM extension.
  847.       MakeFamilyPath(hInstance, m_szHelpFile, TEXT(HELP_FILE_EXT));
  848.  
  849.       // Init the Message Box object.
  850.       if (m_pMsgBox->Init(m_hInst, m_hWnd))
  851.       {
  852.         // Create the Trace Message Log ListBox as a child window that
  853.         // fits the client area of the Main Window (the TRUE 3rd argument
  854.         // specifies such an inside child). If you want the Trace Message
  855.         // Log in a separate (but owned) window, then pass a FALSE instead
  856.         // for the 3rd argument.
  857.         if (m_pMsgLog->Create(m_hInst, m_hWnd, TRUE))
  858.         {
  859.           // Assign the global MsgLog pointer.
  860.           g_pMsgLog = m_pMsgLog;
  861.           // Use macro to log an initial start messsage.
  862.           LOGID(IDS_START_MESSAGE_LOG);
  863.           bOk = TRUE;
  864.         }
  865.       }
  866.     }
  867.   }
  868.  
  869.   if (!bOk)
  870.   {
  871.     DELETE_POINTER(m_pMsgBox);
  872.     DELETE_POINTER(m_pMsgLog);
  873.   }
  874.  
  875.   return (bOk);
  876. }
  877.  
  878.  
  879. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  880.   Method:   CMainWindow::WindowProc
  881.  
  882.   Summary:  Main window procedure for this window object.  See CVirWindow
  883.             in the APPUTIL library (APPUTIL.CPP) for details on how this
  884.             method gets called by the global WindowProc.
  885.  
  886.   Args:     UINT uMsg,
  887.               Windows message that is "sent" to this window.
  888.             WPARAM wParam,
  889.               First message parameter (word sized).
  890.             LPARAM lParam)
  891.               Second message parameter (long sized).
  892.  
  893.   Modifies: ...
  894.  
  895.   Returns:  LRESULT
  896.               Standard Windows WindowProc return value.
  897. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  898. LRESULT CMainWindow::WindowProc(
  899.           UINT uMsg,
  900.           WPARAM wParam,
  901.           LPARAM lParam)
  902. {
  903.   LRESULT lResult = FALSE;
  904.  
  905.   switch (uMsg)
  906.   {
  907.     case WM_CREATE:
  908.       {
  909.         // Setup for painting text in this window.
  910.         HDC hdc = GetDC(m_hWnd);
  911.         ::GetTextMetrics(hdc, &m_tm);
  912.         ::ReleaseDC(m_hWnd, hdc);
  913.       }
  914.       break;
  915.  
  916.     case WM_MEASUREITEM:
  917.       // Get setup for painting text in this window.
  918.       {
  919.         LPMEASUREITEMSTRUCT lpmis = (LPMEASUREITEMSTRUCT) lParam;
  920.         lpmis->itemHeight = m_tm.tmHeight + m_tm.tmExternalLeading;
  921.         lpmis->itemWidth = m_wWidth;
  922.         lResult = TRUE;
  923.       }
  924.  
  925.     case WM_SIZE:
  926.       // Handle a resize of this window.
  927.       m_wWidth = LOWORD(lParam);
  928.       m_wHeight = HIWORD(lParam);
  929.       // Resize the Message Log ListBox
  930.       m_pMsgLog->Resize(m_wWidth, m_wHeight);
  931.       break;
  932.  
  933.     case WM_COMMAND:
  934.       // Dispatch and handle any Menu command messages received.
  935.       lResult = DoMenu(wParam, lParam);
  936.       break;
  937.  
  938.     case WM_COPYDATA:
  939.       // We have been sent a trace log message from a server.
  940.       // Log it to our own Client's display.
  941.       {
  942.         LPTSTR pszMsg = (LPTSTR)((COPYDATASTRUCT*)lParam)->lpData;
  943.         g_pMsgLog->Msg(pszMsg);
  944.         #if defined(DEBUG)
  945.         // Bump to next line in the debugger output window.
  946.         ::OutputDebugString(TEXT("\r\n"));
  947.         #endif
  948.       }
  949.       break;
  950.  
  951.     case WM_CLOSE:
  952.       // The user selected Close on the main window's System menu
  953.       // or Exit on the File menu.
  954.     case WM_QUIT:
  955.       // If the app is being quit then close any associated help windows.
  956.     default:
  957.       // Defer all messages NOT handled here to the Default Window Proc.
  958.       lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
  959.       break;
  960.   }
  961.  
  962.   return(lResult);
  963. }
  964.  
  965.  
  966. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  967.   Function: UnicodeOk
  968.  
  969.   Summary:  Checks if the platform will handle unicode versions of
  970.             Win32 string API calls.
  971.  
  972.   Args:     void
  973.  
  974.   Returns:  BOOL
  975.               TRUE if unicode support; FALSE if not.
  976. ------------------------------------------------------------------------F-F*/
  977. BOOL UnicodeOk(void)
  978. {
  979.   BOOL bOk = TRUE;
  980.   TCHAR szUserName[MAX_STRING_LENGTH];
  981.   DWORD dwSize = MAX_STRING_LENGTH;
  982.  
  983.   if (!GetUserName(szUserName, &dwSize))
  984.     bOk = ERROR_CALL_NOT_IMPLEMENTED == GetLastError() ? FALSE : TRUE;
  985.  
  986.   return bOk;
  987. }
  988.  
  989.  
  990. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  991.   Function: InitApplication
  992.  
  993.   Summary:  Initializes the application and registers its main window
  994.             class. InitApplication is called only once (in WinMain).
  995.  
  996.   Args:     HINSTANCE hInstance)
  997.               Handle to the first instance of the application.
  998.  
  999.   Returns:  BOOL.
  1000.               TRUE if success.
  1001.               FALSE if fail.
  1002. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  1003. BOOL InitApplication(
  1004.        HINSTANCE hInstance)
  1005. {
  1006.   BOOL bOk;
  1007.   // The window class for all instances of the main frame window.
  1008.   WNDCLASSEX wcf;
  1009.  
  1010.   // Assign the appropriate values for this main frame window class.
  1011.   wcf.cbSize        = sizeof(WNDCLASSEX);
  1012.   wcf.cbClsExtra    = 0;            // No per-class extra data.
  1013.   wcf.cbWndExtra    = 0;            // No per-window extra data.
  1014.   wcf.hInstance     = hInstance;    // Application module instance.
  1015.   wcf.lpfnWndProc   = &WindowProc;  // Global Window Procedure (defined in
  1016.                                     // APPUTIL for all CVirWindows).
  1017.   wcf.hCursor       = LoadCursor(NULL, IDC_ARROW); // Load app cursor.
  1018.   wcf.hIcon         = (HICON) LoadIcon(            // Load app icon.
  1019.                                 hInstance,
  1020.                                 TEXT("AppIcon"));
  1021.   wcf.hIconSm       = (HICON) LoadImage(           // Load small icon.
  1022.                                 hInstance,
  1023.                                 TEXT("AppIcon"),
  1024.                                 IMAGE_ICON,
  1025.                                 16, 16,
  1026.                                 0);
  1027.   wcf.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);  // Default backgnd color.
  1028.   wcf.style         = CS_HREDRAW | CS_VREDRAW;     // Class style(s).
  1029.   wcf.lpszClassName = TEXT(MAIN_WINDOW_CLASS_NAME_STR); // Class name.
  1030.   wcf.lpszMenuName  = TEXT(MAIN_WINDOW_CLASS_MENU_STR); // Menu name.
  1031.  
  1032.   // Register the window class and return FALSE if unsuccesful.
  1033.   bOk = RegisterClassEx(&wcf);
  1034.  
  1035.   return (bOk);
  1036. }
  1037.  
  1038.  
  1039. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  1040.   Function: WinMain
  1041.  
  1042.   Summary:  The Windows main entry point function for this application.
  1043.             Initializes the application, the COM Libraries, and starts
  1044.             the main application message loop.
  1045.  
  1046.   Args:     HINSTANCE hInstance,
  1047.               Instance handle; a new one for each invocation of this app.
  1048.             HINSTANCE hPrevInstance,
  1049.               Instance handle of the previous instance. NULL in Win32.
  1050.             LPSTR lpCmdLine,
  1051.               Windows passes a pointer to the application's
  1052.               invocation command line.
  1053.             int nCmdShow)
  1054.               Bits telling the show state of the application.
  1055.  
  1056.   Returns:  int
  1057.               msg.wParam (upon exit of message loop).
  1058.               FALSE if this instance couldn't initialize and run.
  1059. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  1060. extern "C" int PASCAL WinMain(
  1061.                         HINSTANCE hInstance,
  1062.                         HINSTANCE hPrevInstance,
  1063.                         LPSTR lpCmdLine,
  1064.                         int nCmdShow)
  1065. {
  1066.   CMainWindow* pWin = NULL;
  1067.   MSG msg;
  1068.   HACCEL hAccel;
  1069.   int iRun = FALSE;
  1070.  
  1071.   // If we were compiled for UNICODE and the platform seems OK with this
  1072.   // then proceed.  Else we error and exit the app.
  1073.   if (UnicodeOk())
  1074.   {
  1075.     // Call to initialize the COM Library.  Use the SUCCEEDED macro
  1076.     // to detect success.  If fail then exit app with error message.
  1077.     if (SUCCEEDED(CoInitialize(NULL)))
  1078.     {
  1079.       // If we succeeded in initializing the COM Library we proceed to
  1080.       // initialize the application.  If we can't init the application
  1081.       // then we signal shut down with an error message exit.
  1082.       iRun = InitApplication(hInstance);
  1083.       if (iRun)
  1084.       {
  1085.         // Assume we'll set iRun to TRUE when initialization is done.
  1086.         iRun = FALSE;
  1087.         // We are still go for running so we try to create a nifty new
  1088.         // CMainWindow object for this app instance.
  1089.         pWin = new CMainWindow;
  1090.         if (NULL != pWin)
  1091.         {
  1092.           // Now we initialize an instance of the new CMainWindow.
  1093.           // This includes creating the main window.
  1094.           if (pWin->InitInstance(hInstance, nCmdShow))
  1095.           {
  1096.             // Load the keyboard accelerators from the resources.
  1097.             hAccel = LoadAccelerators(hInstance, TEXT("AppAccel"));
  1098.             if (NULL != hAccel)
  1099.             {
  1100.               // Signal App Initialization is successfully done.
  1101.               iRun = TRUE;
  1102.             }
  1103.           }
  1104.         }
  1105.       }
  1106.  
  1107.       if (iRun)
  1108.       {
  1109.         // If we initialized the app instance properly then we are still
  1110.         // go for running.  We then start up the main message pump for
  1111.         // the application.
  1112.         while (GetMessage(&msg, NULL, 0, 0))
  1113.         {
  1114.           if (!TranslateAccelerator(
  1115.                  pWin->GetHwnd(),
  1116.                  hAccel,
  1117.                  &msg))
  1118.           {
  1119.             TranslateMessage(&msg);
  1120.             DispatchMessage(&msg);
  1121.           }
  1122.         }
  1123.  
  1124.         // We ask COM to unload any unused COM Servers.
  1125.         CoFreeUnusedLibraries();
  1126.  
  1127.         // We'll pass to Windows the reason why we exited the message loop.
  1128.         iRun = msg.wParam;
  1129.       }
  1130.       else
  1131.       {
  1132.         // We failed to initialize the application. Put up error message
  1133.         // box saying that application couldn't be initialized.  Parent
  1134.         // window is desktop (ie, NULL). Exit the failed application
  1135.         // (ie, by returning FALSE to WinMain).
  1136.         ErrorBox(hInstance, NULL, IDS_APPINITFAILED);
  1137.  
  1138.         // Delete the CMainWindow object.
  1139.         DELETE_POINTER(pWin);
  1140.       }
  1141.  
  1142.       // We're exiting this app (either normally or by init failure) so
  1143.       // shut down the COM Library.
  1144.       CoUninitialize();
  1145.     }
  1146.     else
  1147.     {
  1148.       // We failed to Initialize the COM Library. Put up error message box
  1149.       // saying that COM Library couldn't be initialized.  Parent window
  1150.       // is desktop (ie, NULL). Exit the failed application (ie, by
  1151.       // returning FALSE to WinMain).
  1152.       ErrorBox(hInstance, NULL, IDS_COMINITFAILED);
  1153.     }
  1154.   }
  1155.   else
  1156.   {
  1157.     // If we were compiled for UNICODE but the platform has problems with
  1158.     // this then indicate an error and exit the app immediately.
  1159.     CHAR szMsg[MAX_STRING_LENGTH];
  1160.  
  1161.     if (LoadStringA(
  1162.           hInstance,
  1163.           IDS_NOUNICODE,
  1164.           szMsg,
  1165.           MAX_STRING_LENGTH))
  1166.     {
  1167.       MessageBoxA(
  1168.         NULL,
  1169.         szMsg,
  1170.         ERROR_TITLE_STR,
  1171.         MB_OK | MB_ICONEXCLAMATION);
  1172.     }
  1173.   }
  1174.  
  1175.   return iRun;
  1176. }
  1177.