0ad/source/lib/sysdep/unix/udbg.h
janwas 28e50ab752 - sysdep: moved posix versions of display_msg etc. to new unix.cpp
- add new portable display_error (and convenience macro DISPLAY_ERROR,
if advanced params aren't needed; don't want to break C compat). this is
the old assert dialog and more; allows ErrorReaction (see sysdep.h) to
be carried out according to users wishes.
- add win_is_locked for deadlock avoidance

This was SVN commit r2420.
2005-06-21 16:44:12 +00:00

13 lines
265 B
C

// sysdep/unix/udbg.h: included from sysdep/debug.h and sysdep/unix/debug.cpp
#ifndef UDBG_H__
#define UDBG_H__
#define debug_break unix_debug_break
extern void unix_debug_break(void);
extern void udbg_launch_debugger();
#endif // #ifndef UDBG_H__