Files
org-hyperion-cules/cmpscdbg.h
Fish (David B. Trout) d4a1b5e109 New 2012 CMPSC instruction implementation is now the default:
Original/legacy cmpsc.c implementation moved to altcmpsc.dll module.

Refer to Release Notes and/or README.CMPSC documents for more details.
2014-12-29 17:17:01 -08:00

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 );
///////////////////////////////////////////////////////////////////////////////