Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/****************************************************************************
* * about.c * * Copyright (c) 1991 Microsoft Corporation. All Rights Reserved. * ***************************************************************************/
#include <windows.h>
#include <mmsystem.h>
#include "sbtest.h"
void About(HWND hWnd) { FARPROC fpDlg;
// show the about box
fpDlg = MakeProcInstance(AboutDlgProc, ghInst); DialogBox(ghInst, "About", hWnd, fpDlg); FreeProcInstance(fpDlg); }
int FAR PASCAL AboutDlgProc(HWND hDlg, unsigned msg, UINT wParam, LONG lParam) {
switch (msg) {
case WM_INITDIALOG: break;
case WM_COMMAND: EndDialog(hDlg, TRUE); break;
default: return FALSE; break; }
return TRUE; }
|