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

📄 pgpiopriv.h

📁 vc环境下的pgp源码
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 1997 Network Associates Inc. and affiliated companies.
	All rights reserved.
	
	Private declarations for PGPIO.  CLIENTS SHOULD NOT INCLUDE THIS FILE.
	

	$Id: pgpIOPriv.h,v 1.7 1999/03/10 02:51:41 heller Exp $
____________________________________________________________________________*/
#include "pgpPFLConfig.h"

#include "pgpIO.h"
#include "pgpFileSpec.h"


PGP_BEGIN_C_DECLARATIONS

typedef PGPError	(*PGPIOInitProc)( PGPIORef ref, void *data);
typedef PGPError	(*PGPIODestroyProc)( PGPIORef ref );

typedef PGPError	(*PGPIOReadProc)( PGPIORef ref, PGPSize requestCount,
						void *buffer, PGPSize *bytesRead );
						
typedef PGPError	(*PGPIOWriteProc)( PGPIORef ref, PGPSize requestCount,
						const void *buffer );
						
typedef PGPError	(*PGPIOSetPosProc)( PGPIORef ref, PGPFileOffset newPos );
						
typedef PGPError	(*PGPIOGetPosProc)( PGPIORef ref, PGPFileOffset *curPos );
						
typedef PGPError	(*PGPIOGetEOFProc)( PGPIORef ref, PGPFileOffset *eof );

#if PGPIO_EOF
typedef PGPError	(*PGPIOSetEOFProc)( PGPIORef ref, PGPFileOffset eof );
#endif

typedef PGPError	(*PGPIOFlushProc)( PGPIORef ref );


/* the virtual function table for a PGPIO */
typedef struct PGPIOVtbl
{
	PGPIOInitProc		initProc;
	PGPIODestroyProc	destroyProc;
	
	PGPIOReadProc		readProc;
	PGPIOWriteProc		writeProc;
	PGPIOGetPosProc		getPosProc;
	PGPIOSetPosProc		setPosProc;
	PGPIOGetEOFProc		getEOFProc;
#if PGPIO_EOF
	PGPIOSetEOFProc		setEOFProc;
#endif
	PGPIOFlushProc		flushProc;
} PGPIOVtbl;


PGPIOVtbl const *	pgpIOGetClassVTBL( void );


PGPError	pgpioInheritInit( PGPIORef ref, PGPIOVtbl const * vtbl,
				void *data );
PGPError	pgpioInheritDestroy( PGPIORef ref, PGPIOVtbl const * vtbl );

PGPError	pgpioInheritRead( PGPIORef ref, PGPIOVtbl const * vtbl,
				PGPSize requestCount, void *buffer, PGPSize *bytesRead );
						
PGPError	pgpioInheritWrite( PGPIORef ref, PGPIOVtbl const * vtbl,
				PGPSize requestCount, const void *buffer );
						
PGPError	pgpioInheritSetPos( PGPIORef ref, PGPIOVtbl const * vtbl,
				PGPFileOffset newPos );
						
PGPError	pgpioInheritGetEOF( PGPIORef ref, PGPIOVtbl const * vtbl,
				PGPFileOffset *eof );
				
#if PGPIO_EOF
PGPError	pgpioInheritSetEOF( PGPIORef ref, PGPIOVtbl const * vtbl,
				PGPFileOffset eof );
#endif
						
PGPError	pgpioInheritFlush( PGPIORef ref, PGPIOVtbl const * vtbl );


struct PGPIO
{
	PGPUInt32					magic;
	PGPIOVtbl const * const		vtbl;
	PGPMemoryMgrRef				context;
	PGPFileOffset				offset;
} ;
#define kPGPIOMagic		0x5047494f	/* 'PGIO' */

#define		pgpioGetObjectVTBL( ref ) \
				( (PGPIORef)(ref))->vtbl

PGPError	pgpNewIOFromVTBL( PGPMemoryMgrRef context, 
				PGPIOVtbl const * vtbl, PGPSize size, void *data,
				PGPIORef * outRef );

PGP_END_C_DECLARATIONS






















/*__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 + -