windows-nt/Source/XPSP1/NT/multimedia/media/test/playsnd/about.c
2020-09-26 16:20:57 +08:00

46 lines
721 B
C

/*
about.c
show the apps about box
*/
#include <windows.h>
#include "PlaySnd.h"
void About(
HWND hWnd)
{
/* show the about box */
DialogBox(ghModule, MAKEINTRESOURCE(IDD_ABOUT) //"About"
, hWnd , (DLGPROC)AboutDlgProc);
}
LONG AboutDlgProc(HWND hDlg, UINT msg, DWORD wParam, LONG lParam)
{
UNREFERENCED_PARAMETER(lParam);
switch (msg) {
case WM_INITDIALOG:
break;
case WM_COMMAND:
switch (wParam) {
case IDOK:
EndDialog(hDlg, TRUE);
break;
default:
break;
}
break;
default:
return FALSE; // say we didn't handle it
break;
}
return TRUE; // say we handled it
}