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

📄 choice.h

📁 PGP8.0源码 请认真阅读您的文件包然后写出其具体功能
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 2002 PGP Corporation
	All rights reserved.

	$Id: Choice.h,v 1.3 2002/08/06 20:09:46 dallen Exp $
____________________________________________________________________________*/

#ifndef _CHOICE_H
#define _CHOICE_H


typedef struct _CHOICE
{
	HWND hwnd;
	struct _CHOICE* next;

}CHOICE, *PCHOICE;


PCHOICE NewChoice(HWND hwndParent);
PCHOICE RemoveLastChoice(HWND hwndParent, HWND* hwndChoice);
int		ChoiceCount(HWND hwndParent);
PCHOICE	FirstChoice(HWND hwndParent);
PCHOICE NextChoice(HWND hwndParent, PCHOICE choice);

LRESULT
CALLBACK
SearchSubclassWndProc(HWND hwnd,
					UINT msg,
					WPARAM wParam,
					LPARAM lParam);


#endif

⌨️ 快捷键说明

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