home *** CD-ROM | disk | FTP | other *** search
/ Desktop Works 1995 - 1996 / desktopworks1995-1996.iso / animator / about.c next >
C/C++ Source or Header  |  1996-01-01  |  435b  |  17 lines

  1. #include "animator.h"
  2.  
  3. //////////////////////////////////////////////////////////////////////////
  4. // About - Window procedure for the about box shown when choosing 
  5. //         File About...
  6. //////////////////////////////////////////////////////////////////////////
  7.  
  8. BOOL _export CALLBACK About(DLGPROC_PARAMS)
  9. {
  10.     if (uMsg == WM_COMMAND && wParam == IDOK)
  11.     {
  12.         EndDialog (hDlg, TRUE);
  13.         return TRUE;
  14.     }
  15.     return FALSE;
  16. }
  17.