📄 main.c
字号:
/*************************************************************************** main.c Compression Library (c) 2003-2004 Daniel Campos Fernández <danielcampos@netcourrier.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.***************************************************************************/#define MAX_DRIVER 8#define __MAIN_C#include <stdio.h>#include "CCompress.h"#include "CUncompress.h"#include "gb.compress.h"#include "gb_common.h"#include "main.h"#ifdef __cplusplusextern "C" {#endifGB_INTERFACE GB;static COMPRESS_DRIVER *_drivers[MAX_DRIVER];static int _drivers_count = 0;static void COMPRESS_Register(COMPRESS_DRIVER *driver){ if (_drivers_count >= MAX_DRIVER) return; _drivers[_drivers_count] = driver; _drivers_count++; }COMPRESS_DRIVER *COMPRESS_GetDriver(char *type){ int i; char comp[strlen(type) + 14]; if (!type) { GB.Error("Driver name missing"); return NULL; } strcpy(comp, "gb.compress."); strcat(comp, type); if (GB.LoadComponent(comp)) { GB.Error("Cannot find driver for : &1", type); return NULL; } for (i = 0; i < _drivers_count; i++) { if (strcasecmp(_drivers[i]->name, type) == 0) return _drivers[i]; } return NULL;}void *GB_COMPRESS_1[] = { (void *)1, (void *)COMPRESS_Register, NULL};GB_DESC *GB_CLASSES[] ={ CCompressDesc, CUncompressDesc, NULL};int GB_INIT(void){ return 0;}void GB_EXIT(){ }#ifdef _cpluscplus}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -