loudmouth/inc/gdebug.h
changeset 10 59927b2d3b75
parent 0 d0f3a028347a
equal deleted inserted replaced
0:d0f3a028347a 10:59927b2d3b75
     1 /* GLIB - Library of useful routines for C programming
       
     2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
       
     3  * .  All rights reserved.
       
     4  *
       
     5  * This library is free software; you can redistribute it and/or
       
     6  * modify it under the terms of the GNU Lesser General Public
       
     7  * License as published by the Free Software Foundation; either
       
     8  * version 2 of the License, or (at your option) any later version.
       
     9  *
       
    10  * This library is distributed in the hope that it will be useful,
       
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13  * Lesser General Public License for more details.
       
    14  *
       
    15  * You should have received a copy of the GNU Lesser General Public
       
    16  * License along with this library; if not, write to the
       
    17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
       
    18  * Boston, MA 02111-1307, USA.
       
    19  */
       
    20 
       
    21 /*
       
    22  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
       
    23  * file for a list of people on the GLib Team.  See the ChangeLog
       
    24  * files for a list of changes.  These files are distributed with
       
    25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
       
    26  */
       
    27 
       
    28 #ifndef __G_DEBUG_H__
       
    29 #define __G_DEBUG_H__
       
    30 
       
    31 #include <_ansi.h>
       
    32 
       
    33 G_BEGIN_DECLS 
       
    34 
       
    35 typedef enum {
       
    36   G_DEBUG_FATAL_WARNINGS  = 1 << 0,
       
    37   G_DEBUG_FATAL_CRITICALS = 1 << 1
       
    38 } GDebugFlag;
       
    39 
       
    40 
       
    41 #ifdef G_ENABLE_DEBUG
       
    42 
       
    43 #define G_NOTE(type, action)            G_STMT_START { \
       
    44     if (!_g_debug_initialized)                         \
       
    45        { _g_debug_init (); }                           \
       
    46     if (_g_debug_flags & G_DEBUG_##type)               \
       
    47        { action; };                         } G_STMT_END
       
    48 
       
    49 #else /* !G_ENABLE_DEBUG */
       
    50 
       
    51 #define G_NOTE(type, action)
       
    52       
       
    53 #endif /* G_ENABLE_DEBUG */
       
    54 
       
    55 #ifdef SYMBIAN
       
    56 IMPORT_C gboolean * __g_debug_initialized();
       
    57 #endif /* SYMBIAN */
       
    58 GLIB_VAR gboolean _g_debug_initialized;
       
    59 
       
    60 #ifdef SYMBIAN
       
    61 IMPORT_C guint * __g_debug_flags();
       
    62 #endif /* SYMBIAN */
       
    63 GLIB_VAR guint _g_debug_flags;
       
    64 
       
    65 void _g_debug_init (void) G_GNUC_INTERNAL;
       
    66 
       
    67 G_END_DECLS
       
    68 
       
    69 #endif /* __G_DEBUG_H__ */