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

Windows编程

开发平台:

Visual C++

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