mirror of
https://github.com/MacPaw/XADMaster.git
synced 2025-08-29 03:23:48 +02:00
73 lines
2.5 KiB
C
Executable file
73 lines
2.5 KiB
C
Executable file
#ifndef XADMASTER_CLIENTS_C
|
||
#define XADMASTER_CLIENTS_C
|
||
|
||
/* $Id: clients.c,v 1.12 2005/06/23 14:54:37 stoecker Exp $
|
||
the xad packing library clients
|
||
|
||
XAD library system for archive handling
|
||
Copyright (C) 1998 and later by Dirk Stˆcker <soft@dstoecker.de>
|
||
|
||
This library is free software; you can redistribute it and/or
|
||
modify it under the terms of the GNU Lesser General Public
|
||
License as published by the Free Software Foundation; either
|
||
version 2.1 of the License, or (at your option) any later version.
|
||
|
||
This library 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
|
||
Lesser General Public License for more details.
|
||
|
||
You should have received a copy of the GNU Lesser General Public
|
||
License along with this library; if not, write to the Free Software
|
||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
*/
|
||
|
||
#include "config.h"
|
||
|
||
#include "include/xadmaster.h"
|
||
#ifdef DEBUG
|
||
void DebugFileSearched(const struct xadArchiveInfo *ai, const xadSTRING *, ...); /* print with 'D' */
|
||
void DebugClient(const struct xadArchiveInfo *ai, const xadSTRING *, ...); /* print with 'D' */
|
||
#endif
|
||
|
||
#include "include/version.h"
|
||
#define XADMASTERFILE
|
||
|
||
#define XADIOGETBITSHIGH
|
||
#define XADIOGETBITSLOW
|
||
#define XADIOREADBITSLOW
|
||
#define XADIOGETBITSLOWR
|
||
#include "clients/xadIO.c" /* needed to enable all bit functions */
|
||
|
||
/* last client comes first -- in client list they are sorted correct */
|
||
|
||
#define XADNEXTCLIENT 0
|
||
|
||
#ifdef XAD_GPLCLIENTS
|
||
#include "clients/HA.c"
|
||
#include "clients/TR-DOS.c"
|
||
#endif
|
||
|
||
#include "clients/Ace.c"
|
||
#include "clients/AMPK.c"
|
||
#include "clients/CrunchDisk.c"
|
||
//#include "clients/DCS.c" // uses XPK only, not supported
|
||
#include "clients/DMS.c"
|
||
#include "clients/FS_Amiga.c"
|
||
#include "clients/FS_FAT.c"
|
||
#include "clients/FS_SOS.c"
|
||
#include "clients/IFF-CDAF.c"
|
||
#include "clients/LhA.c"
|
||
#include "clients/LhF.c"
|
||
//#include "clients/MDC.c" // uses XPK only, not supported
|
||
#include "clients/MXM-SimpleArc.c"
|
||
//#include "clients/PackDev.c" // uses XPK only, not supported
|
||
//#include "clients/PackDisk.c" // uses XPK only, not supported
|
||
//#include "clients/SuperDuper3.c" // uses XPK only, not supported
|
||
//#include "clients/xDisk.c" // uses XPK only, not supported
|
||
//#include "clients/xMash.c" // uses XPK only, not supported
|
||
#include "clients/Zoom.c"
|
||
|
||
const struct xadClient * const RealFirstClient = XADNEXTCLIENT;
|
||
|
||
#endif /* XADMASTER_CLIENTS_C */
|