pgpliteral.h

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

H
33
字号
/*
 * pgpLiteral.h -- Create a Literal Packet Module
 *
 * Written by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpLiteral.h,v 1.10 1997/06/25 19:40:17 lloyd Exp $
 */

#ifndef Included_pgpLiteral_h
#define Included_pgpLiteral_h

#include "pgpUsuals.h"

PGP_BEGIN_C_DECLARATIONS



/*
 * This creates a module for a literal packet.  The type should be
 * either 'b' or 't' for binary or text.  The name is len bytes which
 * specifies the name of the file.  The timestamp is the timestamp of
 * the file.
 */
PGPPipeline  **
pgpLiteralCreate (PGPContextRef cdkContext,
	PGPPipeline **head, PgpVersion version,
	PGPFifoDesc const *fd, PGPByte type, PGPByte *name,
	PGPByte len, PGPUInt32 timestamp);

PGP_END_C_DECLARATIONS

#endif /* Included_pgpLiteral_h */

⌨️ 快捷键说明

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