choice.h

来自「vc环境下的pgp源码」· C头文件 代码 · 共 34 行

H
34
字号
/*____________________________________________________________________________
	Copyright (C) 1998 Network Associates, Inc.
	All rights reserved.  
   
	$Id: Choice.h,v 1.6 1998/08/11 15:19:58 pbj 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 + =
减小字号Ctrl + -
显示快捷键?