pgpudx.h
来自「可以实现对邮件的加密解密以及签名」· C头文件 代码 · 共 42 行
H
42 行
/*____________________________________________________________________________
Copyright (C) 2002 PGP Corporation
All rights reserved.
pgpUDx.h - internal PGP Utility Driver header
$Id: pgpUDx.h,v 1.3 2002/08/06 20:11:19 dallen Exp $
____________________________________________________________________________*/
#ifndef _pgpUDx_h
#define _pgpUDx_h
#ifndef PGP_EROS
#define PGP_EROS 0
#endif // PGP_EROS
// for Windows NT kernel mode driver
#if PGP_WINNT
#include <windows.h>
#endif // PGP_WINNT
// for Windows 95, 98 VxD driver
#if PGP_WIN9X
#define IN
#define OUT
#include <memory.h>
#include <string.h>
#pragma intrinsic(memset,memcmp,memcpy)
#pragma intrinsic(strcpy)
#include <basedef.h>
#endif // PGP_WIN9X
#endif //_pgpUDx_h
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?