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 / dlluser / dlluser.cpp < prev    next >
C/C++ Source or Header  |  1997-08-30  |  20KB  |  579 lines

  1. /*+==========================================================================
  2.   File:      DLLUSER.CPP
  3.  
  4.   Summary:   Based largely on the EXESKEL.EXE application code, this
  5.              module is meant to implicitly link to the DLLSKEL.DLL
  6.              and illustrate the use (by this DLLUSER app) of the two
  7.              exported calls from that DLL: DllHelloBox and DllAboutBox.
  8.              To this end, DLLUSER provides a Test menu with two menu
  9.              selections that exercise each of those calls.
  10.  
  11.              Since it is only a slight augmentation over the EXESKEL code
  12.              sample, DLLUSER in turn can be considered as another
  13.              application skeleton in a graduated sequence of skeletal
  14.              evolution.  Each capable of serving as a point of departure
  15.              in building more sophisticated applications.
  16.  
  17.              For a comprehensive tutorial code tour of DLLUSER's
  18.              contents and offerings see the tutorial DLLUSER.HTM file.
  19.              For more specific technical details on the internal workings
  20.              see the comments dispersed throughout the DLLUSER source code.
  21.              For more details on the DLLSKEL.DLL that DLLUSER works with
  22.              see the DLLSKEL.HTM file in the main tutorial directory.
  23.  
  24.   Classes:   CMainWindow
  25.  
  26.   Functions: InitApplication, WinMain
  27.  
  28.   Origin:    8-3-95: atrent - Editor-inheritance from the EXESKEL source.
  29.  
  30. ----------------------------------------------------------------------------
  31.   This file is part of the Microsoft COM Tutorial Code Samples.
  32.  
  33.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  34.  
  35.   This source code is intended only as a supplement to Microsoft
  36.   Development Tools and/or on-line documentation.  See these other
  37.   materials for detailed information regarding Microsoft code samples.
  38.  
  39.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  40.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  41.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  42.   PARTICULAR PURPOSE.
  43. ==========================================================================+*/
  44.  
  45. /*---------------------------------------------------------------------------
  46.   We include WINDOWS.H for all Win32 applications.
  47.   We include OLE2.H because we will be calling the COM
  48.     Library's CoInitialize and CoUnInitialize calls.
  49.   We include COMMDLG.H because we will be using the Open File and
  50.     potentially other Common dialogs.
  51.   We include APPUTIL.H because we will be building this application using
  52.     the convenient Virtual Window and Dialog classes and other
  53.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  54.   We include DLLUSER.H because it has class and resource definitions
  55.     specific to this DLLUSER application.
  56.   We include DLLSKEL.H because we will be showcasing the use of service
  57.     functions provided by DLLSKEL.DLL.
  58. ---------------------------------------------------------------------------*/
  59. #include <windows.h>
  60. #include <ole2.h>
  61. #include <commdlg.h>
  62. #include <apputil.h>
  63. #include "dlluser.h"
  64. #include "dllskel.h"
  65.  
  66.  
  67. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  68.   Method:   CMainWindow::CMainWindow
  69.  
  70.   Summary:  CMainWindow Constructor.
  71.  
  72.   Args:     .
  73.  
  74.   Modifies: .
  75.  
  76.   Returns:  .
  77. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  78. CMainWindow::CMainWindow()
  79. {
  80.   // Ensure these member variable strings are null strings.
  81.   m_szFileName[0] = 0;
  82.   m_szFileTitle[0] = 0;
  83.  
  84.   // Fill in the Common Dialog's OPENFILENAME structure.
  85.   m_ofnFile.lStructSize = sizeof(OPENFILENAME);
  86.   m_ofnFile.hwndOwner = m_hWnd;
  87.   m_ofnFile.hInstance = m_hInst;
  88.   m_ofnFile.lpstrFilter = TEXT(OFN_DEFAULTFILES_STR);
  89.   m_ofnFile.lpstrCustomFilter = NULL;
  90.   m_ofnFile.nMaxCustFilter = 0;
  91.   m_ofnFile.nFilterIndex = 1;
  92.   m_ofnFile.lpstrFile = m_szFileName;
  93.   m_ofnFile.nMaxFile = MAX_PATH;
  94.   m_ofnFile.lpstrInitialDir = TEXT(".");
  95.   m_ofnFile.lpstrFileTitle = m_szFileTitle;
  96.   m_ofnFile.nMaxFileTitle = MAX_PATH;
  97.   m_ofnFile.lpstrTitle = TEXT(OFN_DEFAULTTITLE_STR);
  98.   m_ofnFile.lpstrDefExt = NULL;
  99.   m_ofnFile.Flags = OFN_HIDEREADONLY;
  100.  
  101.   // Null the Message object pointer.
  102.   m_pMsgBox = NULL;
  103. }
  104.  
  105.  
  106. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  107.   Method:   CMainWindow::~CMainWindow
  108.  
  109.   Summary:  CMainWindow Destructor.  Destruction of the main window
  110.             indicates that the application should quit and thus the
  111.             PostQuitMessage API is called.
  112.  
  113.   Args:     .
  114.  
  115.   Modifies: .
  116.  
  117.   Returns:  .
  118. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  119. CMainWindow::~CMainWindow()
  120. {
  121.   // CMainWindow is derived from CVirWindow which traps the WM_DESTROY
  122.   // message and causes a delete of CMainWindow which in turn causes this
  123.   // destructor to run. The WM_DESTROY results when the window is destoyed
  124.   // after a close of the window. Prior to exiting the main message loop
  125.   // we delete the CMsgBox object that was made in Initinstance.
  126.   DELETE_POINTER(m_pMsgBox);
  127.  
  128.   // We post a WM_QUIT message to cause an exit of the main thread's
  129.   // message loop and an exit of this instance of the application.
  130.   PostQuitMessage(0);
  131. }
  132.  
  133.  
  134. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  135.   Method:   CMainWindow::InitInstance
  136.  
  137.   Summary:  Instantiates an instance of the main application window.
  138.             This method must be called only once, immediately after
  139.             window class construction.  We take care to delete 'this'
  140.             CMainWindow if we must return the error condition FALSE.
  141.  
  142.   Args:     HINSTANCE hInstance,
  143.               Handle of the application instance.
  144.             int nCmdShow)
  145.               Command to pass to ShowWindow.
  146.  
  147.   Modifies: m_szHelpFile, m_pMsgBox.
  148.  
  149.   Returns:  BOOL.
  150.               TRUE if succeeded.
  151.               FALSE if failed.
  152. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  153. BOOL CMainWindow::InitInstance(
  154.        HINSTANCE hInstance,
  155.        int nCmdShow)
  156. {
  157.   BOOL bResult = FALSE;
  158.  
  159.   // Create the Message Box object.
  160.   m_pMsgBox = new CMsgBox;
  161.   HWND hWnd;
  162.  
  163.   if (NULL != m_pMsgBox)
  164.   {
  165.     // Note, the Create method sets the m_hWnd member so we don't
  166.     //   need to set it explicitly here first.
  167.  
  168.     // Here is the create of this window.  Size the window reasonably.
  169.     //   Create sets both m_hInst and m_hWnd.
  170.     hWnd = Create(
  171.              TEXT(MAIN_WINDOW_CLASS_NAME_STR),
  172.              TEXT(MAIN_WINDOW_TITLE_STR),
  173.              WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
  174.                | WS_MAXIMIZEBOX | WS_THICKFRAME,
  175.              CW_USEDEFAULT,
  176.              CW_USEDEFAULT,
  177.              ::GetSystemMetrics(SM_CXSCREEN)*2/5,
  178.              ::GetSystemMetrics(SM_CYSCREEN)*2/5,
  179.              NULL,
  180.              NULL,
  181.              hInstance);
  182.     if (hWnd)
  183.     {
  184.       // Ensure the new window is shown on screen and its content is painted.
  185.       ::ShowWindow(m_hWnd, nCmdShow);
  186.       ::UpdateWindow(m_hWnd);
  187.  
  188.       // Build a path to where the help file should be (it should be in
  189.       // the same directory as the .EXE but with the .HTM extension.
  190.       MakeFamilyPath(hInstance, m_szHelpFile, TEXT(HELP_FILE_EXT));
  191.  
  192.       // Init the Message Box object and signal we succeeded initializing
  193.       // the application.
  194.       if (m_pMsgBox->Init(m_hInst, m_hWnd))
  195.         bResult = TRUE;
  196.     }
  197.   }
  198.  
  199.   if (!bResult)
  200.   {
  201.     DELETE_POINTER(m_pMsgBox);
  202.   }
  203.  
  204.   return (bResult);
  205. }
  206.  
  207.  
  208. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  209.   Method:   CMainWindow::DoMenu
  210.  
  211.   Summary:  Dispatch and handle the main menu commands.
  212.  
  213.   Args:     WPARAM wParam,
  214.               First message parameter (word sized).
  215.             LPARAM lParam)
  216.               Second message parameter (long sized).
  217.  
  218.   Modifies: m_ofnFile, ...
  219.  
  220.   Returns:  LRESULT
  221.               Standard Windows WindowProc return value.
  222. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  223. LRESULT CMainWindow::DoMenu(
  224.           WPARAM wParam,
  225.           LPARAM lParam)
  226. {
  227.   LRESULT lResult = FALSE;
  228.  
  229.   switch (LOWORD(wParam))
  230.   {
  231.     case IDM_FILE_EXIT:
  232.       // The user commands us to exit this application so we tell the
  233.       // Main window to close itself.
  234.       ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
  235.       break;
  236.  
  237.     case IDM_TEST_DLLHELLO:
  238.       // Call the DLLSKEL DLL to say hello from it.
  239.       ::DllHelloBox(m_hWnd);
  240.       break;
  241.  
  242.     case IDM_TEST_DLLABOUT:
  243.       // Call the DLLSKEL DLL to show the DLL's About Box.
  244.       ::DllAboutBox(m_hWnd);
  245.       break;
  246.  
  247.     // Handle Help Menu Commands.
  248.     case IDM_HELP_CONTENTS:
  249.       // We have some stubbed support here for bringing up the online
  250.       // Help for this application.
  251.       ReadHelp(m_hWnd, m_szHelpFile);
  252.       break;
  253.  
  254.     case IDM_HELP_TUTORIAL:
  255.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  256.       // tutorial narrative file associated with this tutorial code sample.
  257.       ReadTutorial(m_hInst, m_hWnd, TEXT(HTML_FILE_EXT));
  258.       break;
  259.  
  260.     case IDM_HELP_TUTDLL:
  261.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  262.       // tutorial narrative file associated with the DLL server.
  263.       ReadTutorial(m_hInst, m_hWnd, TEXT(DLL_TUTFILE_STR));
  264.       break;
  265.  
  266.     case IDM_HELP_READSOURCE:
  267.       // Call the APPUTIL utility function ReadSource to allow the
  268.       // user to open and read any of the source files of DLLUSER.
  269.       ReadSource(m_hWnd, &m_ofnFile);
  270.       break;
  271.  
  272.     case IDM_HELP_ABOUT:
  273.       {
  274.         CAboutBox dlgAboutBox;
  275.  
  276.         // Show the standard About Box dialog for this EXE by telling the
  277.         // dialog C++ object to show itself by invoking its ShowDialog
  278.         // method.  Pass it this EXE instance and the parent window handle.
  279.         // Use a dialog resource ID for the dialog template stored in
  280.         // this EXE module's resources.
  281.         dlgAboutBox.ShowDialog(
  282.           m_hInst,
  283.           MAKEINTRESOURCE(IDM_HELP_ABOUT),
  284.           m_hWnd);
  285.       }
  286.       break;
  287.  
  288.     default:
  289.       // Defer all messages NOT handled here to the Default Window Proc.
  290.       lResult = ::DefWindowProc(m_hWnd, WM_COMMAND, wParam, lParam);
  291.       break;
  292.   }
  293.  
  294.   return(lResult);
  295. }
  296.  
  297.  
  298. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  299.   Method:   CMainWindow::WindowProc
  300.  
  301.   Summary:  Main window procedure for this window object.  See CVirWindow
  302.             in the APPUTIL library (APPUTIL.CPP) for details on how this
  303.             method gets called by the global WindowProc.
  304.  
  305.   Args:     UINT uMsg,
  306.               Windows message that is "sent" to this window.
  307.             WPARAM wParam,
  308.               First message parameter (word sized).
  309.             LPARAM lParam)
  310.               Second message parameter (long sized).
  311.  
  312.   Modifies: ...
  313.  
  314.   Returns:  LRESULT
  315.               Standard Windows WindowProc return value.
  316. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  317. LRESULT CMainWindow::WindowProc(
  318.           UINT uMsg,
  319.           WPARAM wParam,
  320.           LPARAM lParam)
  321. {
  322.   LRESULT lResult = FALSE;
  323.  
  324.   switch (uMsg)
  325.   {
  326.     case WM_CREATE:
  327.       {
  328.         // Setup for painting text in this window.
  329.         HDC hdc = GetDC(m_hWnd);
  330.         ::GetTextMetrics(hdc, &m_tm);
  331.         ::ReleaseDC(m_hWnd, hdc);
  332.       }
  333.       break;
  334.  
  335.     case WM_MEASUREITEM:
  336.       // Get setup for painting text in this window.
  337.       {
  338.         LPMEASUREITEMSTRUCT lpmis = (LPMEASUREITEMSTRUCT) lParam;
  339.         lpmis->itemHeight = m_tm.tmHeight + m_tm.tmExternalLeading;
  340.         lpmis->itemWidth = m_wWidth;
  341.         lResult = TRUE;
  342.       }
  343.  
  344.     case WM_SIZE:
  345.       // Handle a resize of this window.
  346.       m_wWidth = LOWORD(lParam);
  347.       m_wHeight = HIWORD(lParam);
  348.       break;
  349.  
  350.     case WM_COMMAND:
  351.       // Dispatch and handle any Menu command messages received.
  352.       lResult = DoMenu(wParam, lParam);
  353.       break;
  354.  
  355.     case WM_CLOSE:
  356.       // The user selected Close on the main window's System menu
  357.       // or Exit on the File menu.
  358.     case WM_QUIT:
  359.       // If the app is being quit then close any associated help windows.
  360.     default:
  361.       // Defer all messages NOT handled here to the Default Window Proc.
  362.       lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
  363.       break;
  364.   }
  365.  
  366.   return(lResult);
  367. }
  368.  
  369.  
  370. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  371.   Function: UnicodeOk
  372.  
  373.   Summary:  Checks if the platform will handle unicode versions of
  374.             Win32 string API calls.
  375.  
  376.   Args:     void
  377.  
  378.   Returns:  BOOL
  379.               TRUE if unicode support; FALSE if not.
  380. ------------------------------------------------------------------------F-F*/
  381. BOOL UnicodeOk(void)
  382. {
  383.   BOOL bOk = TRUE;
  384.   TCHAR szUserName[MAX_STRING_LENGTH];
  385.   DWORD dwSize = MAX_STRING_LENGTH;
  386.  
  387.   if (!GetUserName(szUserName, &dwSize))
  388.     bOk = ERROR_CALL_NOT_IMPLEMENTED == GetLastError() ? FALSE : TRUE;
  389.  
  390.   return bOk;
  391. }
  392.  
  393.  
  394. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  395.   Function: InitApplication
  396.  
  397.   Summary:  Initializes the application and registers its main window
  398.             class. InitApplication is called only once (in WinMain).
  399.  
  400.   Args:     HINSTANCE hInstance)
  401.               Handle to the first instance of the application.
  402.  
  403.   Returns:  BOOL.
  404.               TRUE if success.
  405.               FALSE if fail.
  406. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  407. BOOL InitApplication(
  408.        HINSTANCE hInstance)
  409. {
  410.   BOOL bOk;
  411.   // The window class for all instances of the main frame window.
  412.   WNDCLASSEX wcf;
  413.  
  414.   // Assign the appropriate values for this main frame window class.
  415.   wcf.cbSize        = sizeof(WNDCLASSEX);
  416.   wcf.cbClsExtra    = 0;            // No per-class extra data.
  417.   wcf.cbWndExtra    = 0;            // No per-window extra data.
  418.   wcf.hInstance     = hInstance;    // Application module instance.
  419.   wcf.lpfnWndProc   = &WindowProc;  // Global Window Procedure (defined in
  420.                                     // APPUTIL for all CVirWindows).
  421.   wcf.hCursor       = LoadCursor(NULL, IDC_ARROW); // Load app cursor.
  422.   wcf.hIcon         = (HICON) LoadIcon(            // Load app icon.
  423.                                 hInstance,
  424.                                 TEXT("AppIcon"));
  425.   wcf.hIconSm       = (HICON) LoadImage(           // Load small icon.
  426.                                 hInstance,
  427.                                 TEXT("AppIcon"),
  428.                                 IMAGE_ICON,
  429.                                 16, 16,
  430.                                 0);
  431.   wcf.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);  // Default backgnd color.
  432.   wcf.style         = CS_HREDRAW | CS_VREDRAW;     // Class style(s).
  433.   wcf.lpszClassName = TEXT(MAIN_WINDOW_CLASS_NAME_STR); // Class name.
  434.   wcf.lpszMenuName  = TEXT(MAIN_WINDOW_CLASS_MENU_STR); // Menu name.
  435.  
  436.   // Register the window class and return FALSE if unsuccesful.
  437.   bOk = RegisterClassEx(&wcf);
  438.  
  439.   return (bOk);
  440. }
  441.  
  442.  
  443. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  444.   Function: WinMain
  445.  
  446.   Summary:  The Windows main entry point function for this application.
  447.             Initializes the application, the COM Libraries, and starts
  448.             the main application message loop.
  449.  
  450.   Args:     HINSTANCE hInstance,
  451.               Instance handle; a new one for each invocation of this app.
  452.             HINSTANCE hPrevInstance,
  453.               Instance handle of the previous instance. NULL in Win32.
  454.             LPSTR lpCmdLine,
  455.               Windows passes a pointer to the application's
  456.               invocation command line.
  457.             int nCmdShow)
  458.               Bits telling the show state of the application.
  459.  
  460.   Returns:  int
  461.               msg.wParam (upon exit of message loop).
  462.               FALSE if this instance couldn't initialize and run.
  463. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  464. extern "C" int PASCAL WinMain(
  465.                         HINSTANCE hInstance,
  466.                         HINSTANCE hPrevInstance,
  467.                         LPSTR lpCmdLine,
  468.                         int nCmdShow)
  469. {
  470.   CMainWindow* pWin;
  471.   MSG msg;
  472.   HACCEL hAccel;
  473.   int iRun = FALSE;
  474.  
  475.   // If we were compiled for UNICODE and the platform seems OK with this
  476.   // then proceed.  Else we error and exit the app.
  477.   if (UnicodeOk())
  478.   {
  479.     // Call to initialize the COM Library.  Use the SUCCEEDED macro
  480.     // to detect success.  If fail then exit app with error message.
  481.     if (SUCCEEDED(CoInitialize(NULL)))
  482.     {
  483.       // If we succeeded in initializing the COM Library we proceed to
  484.       // initialize the application.  If we can't init the application
  485.       // then we signal shut down with an error message exit.
  486.       iRun = InitApplication(hInstance);
  487.  
  488.       if (iRun)
  489.       {
  490.         // Assume we'll set iRun to TRUE when initialization is done.
  491.         iRun = FALSE;
  492.         // We are still go for running so we try to create a nifty new
  493.         // CMainWindow object for this app instance.
  494.         pWin = new CMainWindow;
  495.         if (NULL != pWin)
  496.         {
  497.           // Now we initialize an instance of the new CMainWindow.
  498.           // This includes creating the main window.
  499.           if (pWin->InitInstance(hInstance, nCmdShow))
  500.           {
  501.             // Load the keyboard accelerators from the resources.
  502.             hAccel = LoadAccelerators(hInstance, TEXT("AppAccel"));
  503.             if (NULL != hAccel)
  504.             {
  505.               // Signal App Initialization is successfully done.
  506.               iRun = TRUE;
  507.             }
  508.           }
  509.         }
  510.       }
  511.  
  512.       if (iRun)
  513.       {
  514.         // If we initialized the app instance properly then we are still
  515.         // go for running.  We then start up the main message pump for
  516.         // the application.
  517.         while (GetMessage(&msg, NULL, 0, 0))
  518.         {
  519.           if (!TranslateAccelerator(
  520.                  pWin->GetHwnd(),
  521.                  hAccel,
  522.                  &msg))
  523.           {
  524.             TranslateMessage(&msg);
  525.             DispatchMessage(&msg);
  526.           }
  527.         }
  528.  
  529.         // We'll pass to Windows the reason why we exited the message loop.
  530.         iRun = msg.wParam;
  531.       }
  532.       else
  533.       {
  534.         // We failed to initialize the application. Put up error message
  535.         // box saying that application couldn't be initialized.  Parent
  536.         // window is desktop (ie, NULL). Exit the failed application
  537.         // (ie, by returning FALSE to WinMain).
  538.         ErrorBox(hInstance, NULL, IDS_APPINITFAILED);
  539.  
  540.         // Delete the CMainWindow object.
  541.         DELETE_POINTER(pWin);
  542.       }
  543.  
  544.       // We're exiting this app (either normally or by init failure) so
  545.       // shut down the COM Library.
  546.       CoUninitialize();
  547.     }
  548.     else
  549.     {
  550.       // We failed to Initialize the COM Library. Put up error message box
  551.       // saying that COM Library couldn't be initialized.  Parent window
  552.       // is desktop (ie, NULL). Exit the failed application (ie, by
  553.       // returning FALSE to WinMain).
  554.       ErrorBox(hInstance, NULL, IDS_COMINITFAILED);
  555.     }
  556.   }
  557.   else
  558.   {
  559.     // If we were compiled for UNICODE but the platform has problems with
  560.     // this then indicate an error and exit the app immediately.
  561.     CHAR szMsg[MAX_STRING_LENGTH];
  562.  
  563.     if (LoadStringA(
  564.           hInstance,
  565.           IDS_UNICODEFAIL,
  566.           szMsg,
  567.           MAX_STRING_LENGTH))
  568.     {
  569.       MessageBoxA(
  570.         NULL,
  571.         szMsg,
  572.         ERROR_TITLE_STR,
  573.         MB_OK | MB_ICONEXCLAMATION);
  574.     }
  575.   }
  576.  
  577.   return iRun;
  578. }
  579.