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

📄 rdstruct.h

📁 PGP—Pretty Good Privacy
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 1997 Network Associates Inc. and affiliated companies.
	All rights reserved.

	$Id: RDstruct.h,v 1.18 1999/03/10 03:01:33 heller Exp $
____________________________________________________________________________*/
#ifndef Included_RDSTRUCT_h	/* [ */
#define Included_RDSTRUCT_h

#include "pgpSDKUILibPriv.h"

#define KEYIDLENGTH 20 // Formerly 12
#define SIZELENGTH 30

#define NUMCOLUMNS 3

typedef struct _liststruct
{
	HWND				hwnd;
	HWND				hwndlist;
	HWND				hwndtext[NUMCOLUMNS];
	int					colwidth[NUMCOLUMNS];
	float				*colratio;
} LISTSTRUCT;

typedef struct _drawstruct
{
	PGPBoolean			DisplayMarginal;
	PGPBoolean			MarginalInvalid;
	DWORD				barcolor;
	HBRUSH				stdbarbrush;
	HBRUSH				spcbarbrush;
	HPEN				g_seltextpen;
	HPEN				g_unseltextpen;
	HPEN				hilightpen;
	HPEN				shadowpen;
	HPEN				buttonpen;

	HBRUSH				barbgbrush;
	HBRUSH				HighBrush;
	HBRUSH				BackBrush;
	HFONT				hFont;
	HFONT				hItalic;
	HFONT				hStrikeOut;
	HIMAGELIST			hIml;
} DRAWSTRUCT;

typedef struct _USERKEYINFO
{
	DWORD				icon;
	DWORD				Trust;
	DWORD				Validity;
	DWORD				Algorithm;
	char				UserId[kPGPMaxUserIDSize+1];
	char        		szSize[SIZELENGTH];
	struct PGPRecipientUser	*pru;

	struct _USERKEYINFO *next;
} USERKEYINFO, *PUSERKEYINFO;

typedef struct
{
PGPContextRef			context;
PGPtlsContextRef		tlsContext;
const PGPKeyServerSpec	*ksEntries;
PGPUInt32				numKSEntries;
char					*mWindowTitle;
PGPBoolean				mSearchBeforeDisplay;
PGPKeySetRef			*mNewKeys;
PGPOptionListRef		mDialogOptions;
PGPUInt32				mNumDefaultRecipients;
PGPRecipientSpec		*mDefaultRecipients;
PGPBoolean				mDisplayMarginalValidity;
PGPBoolean				mIgnoreMarginalValidity;
PGPGroupSetRef			mGroupSet;
PGPKeySetRef			mClientKeySet;
PGPKeySetRef			*mRecipientKeysPtr;
HWND					mHwndParent;
HWND					hwndRecDlg;
HWND					hwndOptions;
HIMAGELIST				hDragImage;
BOOL					bDragging;      
HWND					hwndDragFrom;
DRAWSTRUCT				ds;
LISTSTRUCT				lsUser;
LISTSTRUCT				lsRec;
PUSERKEYINFO			gUserLinkedList; 
HWND					hwndRecipients;
HWND					hwndUserIDs;
BOOL					RSortAscending;
int						RSortSub;
BOOL					USortAscending;
int						USortSub;
UINT					AddUserRetVal;
PGPRecipientsList		mRecipients;
} RECGBL, *PRECGBL;

UINT PGPM_RELOADKEYRING;
WNDPROC origListBoxProc;
 
#endif /* ] Included_RDSTRUCT_h */


/*__Editor_settings____

	Local Variables:
	tab-width: 4
	End:
	vi: ts=4 sw=4
	vim: si
_____________________*/

⌨️ 快捷键说明

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