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

📄 dox_defines.h

📁 把html转成txt 把html转成txt
💻 H
字号:
#ifndef __DOX_DEFINES_H__
#define __DOX_DEFINES_H__

/* Define version */
#define VERSION "2.70"#define COPYRIGHT "Copyright 1998-2000 by Andrew Punch."#define GENERATOR "Dox "VERSION" "COPYRIGHT/* Registry locations for user information */#define LOCALKeyName "SOFTWARE\\Dox\\2.00"#define USERKeyName "Software\\Dox\\2.00"

#define PRESERVED 4      /* Styles which are initialised only once per document*/
#define MAXSTYLES 16     /* Number of styles. */#define MAXSTR 1024      /* Size to allocate for strings. */#define MAX_LINE_LEN 255 /* Maximum number of characters per line. Applies to txt */#define DEF_LINE_LEN 80  /* Default line length for wrapping. */#define MAXFILES 64      /* Maximum number of files in command line. */#define MAXFILENAME 1024  /* Maximum length of filenames. */#define NUMDOCS 3        /* Number of document types. */#define TDoxConInfo state_type/* Define true and false if it isn't already done. */#ifndef TRUE#define TRUE 1#define FALSE 0#endif#ifndef true#define true 1#define false 0#endif#define DOX_BAIL TRUE#define FAIL -1         /* Fail condition. *//* This value tells what format the input or output file will be in. */enum doc_code        {        doc_rtf,  /* rtf (Rich Text Format) */        doc_html, /* html (HyperText Markup Language) */        doc_text, /* text ASCII text */        doc_word  /* word (MS Word) - not yet supported. */        };#define LXOR(x,y) ( ((x)||(y)) && (!((x)&&(y))) )
#endif

⌨️ 快捷键说明

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