pgpprsasc.h

来自「著名的加密软件的应用于电子邮件中」· C头文件 代码 · 共 55 行

H
55
字号
/*
 * pgpPrsAsc.h -- An Ascii Armor Parser for PGP.
 *
 * Copyright (C) 1995-1997 Pretty Good Privacy, Inc. All rights reserved.
 *
 * Written by:	Derek Atkins <warlord@MIT.EDU>
 *
 * $Id: pgpPrsAsc.h,v 1.4.2.1 1997/06/07 09:50:57 mhw Exp $
 */

#ifndef PGPPRSASC_H
#define PGPPRSASC_H

#include "pgpUsuals.h"

#ifdef __cplusplus
extern "C" {
#endif

struct Pipeline;
#ifndef TYPE_PIPELINE
#define TYPE_PIPELINE 1
typedef struct Pipeline Pipeline;
#endif

struct PgpEnv;
#ifndef TYPE_PGPENV
#define TYPE_PGPENV 1
typedef struct PgpEnv PgpEnv;
#endif

struct PgpFifoDesc;
#ifndef TYPE_PGPFIFODESC
#define TYPE_PGPFIFODESC 1
typedef struct PgpFifoDesc PgpFifoDesc;
#endif

struct PgpUICb;
#ifndef TYPE_PGPUICB
#define TYPE_PGPUICB 1
typedef struct PgpUICb PgpUICb;
#endif

struct PgpPipeline PGPExport **pgpParseAscCreate (struct PgpPipeline **head,
			 						struct PgpEnv const *env,
			 						struct PgpFifoDesc const *fd,
			 						struct PgpUICb const *ui,
			 						void *ui_arg);

#ifdef __cplusplus
}
#endif

#endif /* PGPPRSASC_H */

⌨️ 快捷键说明

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