~midori/midori/gtk3WebKit2only

« back to all changes in this revision

Viewing changes to src/debug.h

  • Committer: Christian Dywan
  • Date: 2007-12-16 22:20:24 UTC
  • Revision ID: git-v1:3bbd273a4f9e85a1d8380cb0924c875683fa3ad1
Tags: v0.0.14
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 Copyright (C) 2007 Christian Dywan <christian@twotoasts.de>
 
3
 
 
4
 This library is free software; you can redistribute it and/or
 
5
 modify it under the terms of the GNU Lesser General Public
 
6
 License as published by the Free Software Foundation; either
 
7
 version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
 See the file COPYING for the full license text.
 
10
*/
 
11
 
 
12
#ifndef __DEBUG_H__
 
13
#define __DEBUG_H__ 1
 
14
 
 
15
#include "config.h"
 
16
 
 
17
#include <glib/gprintf.h>
 
18
 
 
19
#if SOKOKE_DEBUG > 1
 
20
    #define UNIMPLEMENTED g_print(" * Unimplemented: %s\n", G_STRFUNC);
 
21
#else
 
22
    #define UNIMPLEMENTED ;
 
23
#endif
 
24
 
 
25
#endif /* !__DEBUG_H__ */