-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdebug.hh
52 lines (42 loc) · 1.49 KB
/
debug.hh
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
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright ViewTouch, Inc., 1995, 1996, 1997, 1998
* 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
*
* debug.cc
* Some debug functions that may or may not help in the debugging process.
* If they don't help, don't use them. Heh.
* Created By: Bruce Alon King, Tue Apr 2 08:45:15 2002
*/
#ifndef _DEBUG_FUNCS_HH
#define _DEBUG_FUNCS_HH
#include "basic.hh"
#include <stdio.h>
#include <X11/Xlib.h>
#ifdef DEBUG
extern const genericChar* pos_data_filename;
const genericChar* GetXEventName( XEvent );
void PrintXEventName( XEvent, const genericChar* , FILE * );
void PrintTermCode( int );
void PrintServerCode( int );
void PrintFamilyCode( int );
const genericChar* GetZoneTypeName( int );
#else
#define GetXEventName(x)
#define PrintXEventName(x,y,z)
#define PrintTermCode(x)
#define PrintServerCode(x)
#define PrintFamilyCode(x)
#define GetZoneTypeName(x)
#endif
#endif