Blame src/common/proto-irc.h

rpm-build 698d12
/* HexChat
rpm-build 698d12
 * Copyright (C) 1998-2010 Peter Zelezny.
rpm-build 698d12
 * Copyright (C) 2009-2013 Berke Viktor.
rpm-build 698d12
 *
rpm-build 698d12
 * This program is free software; you can redistribute it and/or modify
rpm-build 698d12
 * it under the terms of the GNU General Public License as published by
rpm-build 698d12
 * the Free Software Foundation; either version 2 of the License, or
rpm-build 698d12
 * (at your option) any later version.
rpm-build 698d12
 *
rpm-build 698d12
 * This program is distributed in the hope that it will be useful,
rpm-build 698d12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 698d12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
rpm-build 698d12
 * GNU General Public License for more details.
rpm-build 698d12
 *
rpm-build 698d12
 * You should have received a copy of the GNU General Public License
rpm-build 698d12
 * along with this program; if not, write to the Free Software
rpm-build 698d12
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
rpm-build 698d12
 */
rpm-build 698d12
rpm-build 698d12
#include <time.h>
rpm-build 698d12
#include "hexchat.h"
rpm-build 698d12
rpm-build 698d12
#ifndef HEXCHAT_PROTO_H
rpm-build 698d12
#define HEXCHAT_PROTO_H
rpm-build 698d12
rpm-build 698d12
#define MESSAGE_TAGS_DATA_INIT			\
rpm-build 698d12
	{									\
rpm-build 698d12
		(time_t)0, /* timestamp */		\
rpm-build 698d12
	}
rpm-build 698d12
rpm-build 698d12
/* Message tag information that might be passed along with a server message
rpm-build 698d12
 *
rpm-build 698d12
 * See http://ircv3.atheme.org/specification/capability-negotiation-3.1
rpm-build 698d12
 */
rpm-build 698d12
typedef struct 
rpm-build 698d12
{
rpm-build 698d12
	time_t timestamp;
rpm-build 698d12
} message_tags_data;
rpm-build 698d12
rpm-build 698d12
void proto_fill_her_up (server *serv);
rpm-build 698d12
rpm-build 698d12
#endif