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

📄 r2.h

📁 这是一个C程序分析工具
💻 H
字号:
/*===================================================================
    FILE   :   @(#)r2.h	2.5  -  03/28/00
  ===================================================================*/

#ifndef __R2_H__
#define __R2_H__

/*===================================================================
	PURPOSE: Global definitions and variables for the RECON system.

   SYSTEM : RECON II
  ===================================================================*/

/* Identify ONE Operating System in the compile command line or uncomment below  */

#define SYS_DOS
/* #define SYS_UNIX */


#ifndef SYS_DOS
#ifndef SYS_UNIX
 error SYS_X constant not defined
#endif
#endif

#ifdef SYS_DOS
#define SLASH              '\\'
#define MAXLENGTH           63

#define MAXPATH            200
#define MAXDRIVE             3
#define MAXDIR             200
#define MAXFILE             30
#define MAXEXT               5

#else /* SYS_UNIX */
#define SLASH	             '/'
#define MAXLENGTH          125

#define MAXPATH            200
#define MAXDRIVE             3
#define MAXDIR             200
#define MAXFILE             64
#define MAXEXT               5
#endif

#define FALSE                0
#define TRUE                 1
#define R2_VERS "03/28/2000" /* UPDATE WITH EACH NEW VERSION */

#endif  /* __R2_H__ */

⌨️ 快捷键说明

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