pgpprsbin.h

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

H
37
字号
/*
 * pgpPrsBin.h -- The PGP Binary Message parser
 *
 * Written by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpPrsBin.h,v 1.9 1998/06/03 20:31:59 hal Exp $
 */

#ifndef Included_pgpPrsBin_h
#define Included_pgpPrsBin_h

#include "pgpOpaqueStructs.h"
#include "pgpPubTypes.h"
#include "pgpUsuals.h"

PGP_BEGIN_C_DECLARATIONS


/*
 * Create a binary parser module.  This module will read in data,
 * figure out what kind of PGP message it is, and create the
 * appropriate sub-modules to actually decode the message, depending
 * on the user's wishes.
 *
 * It communicated with the Annotation Reader, which is a part of the
 * User Interface, to explain exactly what is going on with the
 * decoding process.  This module, once the pipeline is put into
 * action, will add and delete modules downstream.
 */
PGPPipeline  **pgpParseBinCreate (
		PGPContextRef cdkContext, PGPPipeline **head,
					PGPEnv const *env, PGPUICb const *ui, void *ui_arg);

PGP_END_C_DECLARATIONS

#endif /* Included_pgpPrsBin_h */

⌨️ 快捷键说明

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