mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-10 22:24:32 +02:00
Original/legacy cmpsc.c implementation moved to altcmpsc.dll module. Refer to Release Notes and/or README.CMPSC documents for more details.
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/* CMPSCDBG.H (c) Copyright "Fish" (David B. Trout), 2012-2014 */
|
|
/* Compression Call Debugging Functions */
|
|
/* */
|
|
/* Released under "The Q Public License Version 1" */
|
|
/* (http://www.hercules-390.org/herclic.html) as modifications to */
|
|
/* Hercules. */
|
|
|
|
#ifndef _CMPSCDBG_H_
|
|
#define _CMPSCDBG_H_ // Code to be compiled ONLY ONCE goes after here
|
|
|
|
// TODO: define any structures, etc, the debugging code might need...
|
|
|
|
#endif // _CMPSCDBG_H_ // Place all 'ARCH_DEP' code after this statement
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// FILE: cmpscdbg.h
|
|
//
|
|
// Header for the Compression Call debugging functions
|
|
//
|
|
// FUNCTIONS:
|
|
//
|
|
// cmpsc_Report() - Formatted dump of internal structures
|
|
//
|
|
// PARAMETERS:
|
|
//
|
|
// dbg Pointer to debugging context
|
|
//
|
|
// RETURNS:
|
|
//
|
|
// int 0 if success, errno on failure.
|
|
//
|
|
// COMMENTS:
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
extern int (CMPSC_FASTCALL ARCH_DEP( cmpsc_Report ))( void* dbg );
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|