]> git.tdb.fi Git - gldbg.git/blob - source/breakpoint.h
Enable bidirectional communication between gldbg and glwrap.so
[gldbg.git] / source / breakpoint.h
1 /* $Id$
2
3 This file is part of gldbg
4 Copyright © 2010  Mikko Rasa, Mikkosoft Productions
5 Distributed under the GPL
6 */
7
8 #ifndef BREAKPOINT_H_
9 #define BREAKPOINT_H_
10
11 enum
12 {
13         BREAK_CALL = 1,
14         BREAK_RETURN = 2
15 };
16
17 #endif