forked from Hercules-Aethra/aethra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmpscdbg.h
39 lines (33 loc) · 1.28 KB
/
cmpscdbg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* 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 );
///////////////////////////////////////////////////////////////////////////////