about.c

来自「VC写的对DTMF信号的识别程序」· C语言 代码 · 共 39 行

C
39
字号
// ABOUT.C (c) 2004 Howard Long (G6LVB), Hanlincrest Ltd. All rights reserved.
// 72 Princes Gate
// London SW7 2PA
// United Kingdom
// howard@hanlincrest.com
// Free for educational and non-profit use. For commercial use please contact the author.

#include <windows.h>

#include "resource.h"

#include "about.h"

static LRESULT CALLBACK AboutDlg(HWND hdlg,UINT message,WPARAM wParam,LPARAM lParam)
{
	switch (message) 
	{
		case WM_COMMAND:
			switch (LOWORD(wParam))
			{
				case IDOK:
				case IDCANCEL:
					EndDialog(hdlg, TRUE);
					break;
				default:
					break;
			}
			break;
		default:
			break;
	}
	return FALSE;
}

void About(HWND hdlg, HINSTANCE hinst)
{
	DialogBox(hinst,MAKEINTRESOURCE(IDD_ABOUT),hdlg,AboutDlg);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?