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

📄 def.h

📁 DIAMOND加密算法的原代码
💻 H
字号:
/* def.h -- definitions of type names.
   This file is in the Public Domain.
*/

// Null pointer is probably already defined.

#if !defined(NULL)
#define NULL ((void *) 0L)
#endif

// Internal calling convention.
#ifdef UNIX
#define CALLTYPE 
#define PASCAL
#else
#define CALLTYPE _fastcall
#define PASCAL _pascal
#endif

#define false (0)
#define true (1)

typedef int boolean;
typedef int BOOL;
typedef unsigned char byte;
typedef unsigned char BYTE;
typedef unsigned int uint;
typedef unsigned int UINT;
typedef unsigned long int ulong;
typedef unsigned long int DWORD;

⌨️ 快捷键说明

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