⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.c

📁 VC写的对DTMF信号的识别程序
💻 C
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -