pidgin/purple-plugin-pack

A few changes:
org.guifications.plugins
2008-07-22, rekkanoryo
1afb71dd8196
A few changes:
* Make the enchant support in switchspell the default.
* Fix help for the configure flag to reflect that it's now --disable-enchant.
* Add output to show if enchant will be used for switchspell when switchspell
is going to be built.
* Make the ChangeLog reflect the change to enchant by default.
/*
* TimeLog plugin.
*
* Copyright (C) 2006 Jon Oberheide
* Copyright (C) 2007-2008 Stu Tomlinson
*
* 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., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifndef _TIMELOG_H_
#define _TIMELOG_H_
#define TIMELOG_PLUGIN_ID "gtk-binaryjono-timelog"
#define TIMELOG_TITLE _("TimeLog")
#define tl_debug(fmt, ...) purple_debug(PURPLE_DEBUG_INFO, TIMELOG_TITLE, \
fmt, ## __VA_ARGS__);
#define tl_error(fmt, ...) purple_debug(PURPLE_DEBUG_ERROR, TIMELOG_TITLE, \
fmt, ## __VA_ARGS__);
#endif