// **********************************************
// File: ABOUT.CPP
// "About..." dialog box procedure

#include "muzika.h"

// **********************************************
// DialogAbout is the "About..." dialog box procedure,
// processing messages intended for this dialog box.
// The only processed message is WM_COMMAND, on which
// the dialog box is finished.

BOOL FAR PASCAL DialogAbout(HWND hDlg, unsigned message, WORD, LONG)
{
  switch (message) {
    case WM_INITDIALOG:
      return TRUE;

    case WM_COMMAND:
      EndDialog(hDlg, TRUE);
      return TRUE;
  }

  return FALSE;
}
