extern.cpp

来自「我根据comp430s改写的DLL源码」· C++ 代码 · 共 42 行

CPP
42
字号
#include "stdafx.h"
#include "compress.h"

UCHAR magic_header[] = { 0x1F,0x9D };  /* 1F 9D */

char rcs_ident[] = TITLE;

int keep = KEEPFLAG;            /* True = don't kill file */
int keep_error = FALSE;     /* True = keep output file even if error exist */
//char *prog_name;
char endchar[1];
//char xbuf[XBUFSIZE];
//char zbuf[ZBUFSIZE];

#ifdef MSDOS
char separator[] = "\\";
#else
char separator[] = "/";
#endif
/*
 * block compression parameters -- after all codes are used up,
 * and compression rate changes, start over.
 */
//int block_compress = BLOCK_MASK;
#ifdef COMP40
long int ratio = 0L;
long checkpoint = CHECK_GAP;
#endif

/* force the overwrite */
int force = 0;

#ifdef DEBUG
int verbose = VERBOSE;
int debug = FALSE;
#endif /* DEBUG */

#ifndef NOSIGNAL
SIGTYPE (*bgnd_flag)();
#endif

⌨️ 快捷键说明

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