Mercurial > audlegacy-plugins
view src/amidi-plug/i_common.h @ 3017:963796db51ea
Don't use deprecated gtk macros and types
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Thu, 09 Apr 2009 14:23:42 +0200 |
parents | 3134a0987162 |
children |
line wrap: on
line source
/* * * Author: Giacomo Lozito <james@develia.org>, (C) 2005-2006 * * 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 2 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, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef _I_COMMON_H #define _I_COMMON_H 1 #include "config.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <strings.h> #include <glib.h> #include <audlegacy/i18n.h> #define DEBUG 1 #define textdomain(Domain) #define bindtextdomain(Package, Directory) #define WARNANDBREAK(...) { g_warning(__VA_ARGS__); break; } #define WARNANDBREAKANDPLAYERR(...) { amidiplug_playing_status = AMIDIPLUG_ERR; g_warning(__VA_ARGS__); break; } #ifdef DEBUG #define DEBUGMSG(...) { fprintf(stderr, "amidi-plug(%s:%s:%d): ", __FILE__, __FUNCTION__, (int) __LINE__); fprintf(stderr, __VA_ARGS__); } #else #define DEBUGMSG(...) #endif /* DEBUG */ #define AMIDIPLUG_VERSION "0.8b1" #define PLAYER_NAME "Audacious" #define PLAYER_LOCALRCDIR ".audacious" #define G_PATH_GET_BASENAME(x) g_path_get_basename(x) #define G_STRING_PRINTF(...) g_string_printf(__VA_ARGS__) #define G_USLEEP(x) g_usleep(x) #define G_VFPRINTF(x,y,z) g_vfprintf(x,y,z) /* multi-purpose data bucket */ typedef struct { gint bint[2]; gchar * bcharp[2]; gpointer bpointer[2]; } data_bucket_t; #endif /* !_I_COMMON_H */