home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mnth0106.zip / Timur / about.c next >
Text File  |  1992-07-28  |  689b  |  26 lines

  1. /* ABOUT.C - About Dialog Box routines
  2.  
  3. Copyright (c) 1992 Timur Tabi
  4. Copyright (c) 1992 Fasa Corporation
  5.  
  6. The following trademarks are the property of Fasa Corporation:
  7. BattleTech, CityTech, AeroTech, MechWarrior, BattleMech, and 'Mech.
  8. The use of these trademarks should not be construed as a challenge to these marks.
  9. */
  10.  
  11. #define INCL_WIN
  12. #include <os2.h>
  13. #include <string.h>
  14. #include "dialog.h"
  15.  
  16. MRESULT EXPENTRY AboutDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) {
  17.   switch (msg) {
  18.     case WM_COMMAND:
  19.       if (SHORT1FROMMP(mp1)==DID_OK) {
  20.         WinDismissDlg(hwnd,TRUE);
  21.         return 0;
  22.       }
  23.   }
  24.   return WinDefDlgProc(hwnd,msg,mp1,mp2);
  25. }
  26.