home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / ikony / animart / about.c next >
C/C++ Source or Header  |  1995-12-09  |  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.