home *** CD-ROM | disk | FTP | other *** search
- /*
- NODDLGS.CPP
-
- The dialog boxes for NODEE.CPP
-
- Only the member function code is in this file. The
- header file contains the class definition.
-
- */
-
- #ifndef __WINDOWS_H
- #include <Windows.h>
- #endif
-
- #ifndef __String_H
- #include <String.h>
- #endif
-
- #ifndef __NODDLGS_H
- #include "NodDlgs.h"
- #endif
-
-
-
-
- LPSTR AboutBox::getDialogName()
- {
- return "AboutBox";
- }
-
- BOOL AboutBox::dispatch( HWND hDlg, WORD msg, WORD wParam, LONG lParam )
- {
- switch( msg )
- {
- case WM_INITDIALOG:
- return TRUE;
-
- case WM_COMMAND:
- if( wParam == IDOK || wParam == IDCANCEL )
- {
- EndDialog( hDlg, TRUE );
- return TRUE;
- }
-
- default:
- return ModalDialog::dispatch( hDlg, msg, wParam, lParam );
-
- }
- }
-
-
-