home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
swCHIP 1991 January
/
swCHIP_95-1.bin
/
ikony
/
animart
/
about.c
next >
Wrap
C/C++ Source or Header
|
1995-12-09
|
435b
|
17 lines
#include "animator.h"
//////////////////////////////////////////////////////////////////////////
// About - Window procedure for the about box shown when choosing
// File About...
//////////////////////////////////////////////////////////////////////////
BOOL _export CALLBACK About(DLGPROC_PARAMS)
{
if (uMsg == WM_COMMAND && wParam == IDOK)
{
EndDialog (hDlg, TRUE);
return TRUE;
}
return FALSE;
}