mirror of https://github.com/bqv/weechat-xmpp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1013 B
C++
24 lines
1013 B
C++
3 years ago
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
// License, version 2.0. If a copy of the MPL was not distributed with this
|
||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
|
||
3 years ago
|
#pragma once
|
||
3 years ago
|
|
||
|
void buffer__get_account_and_channel(struct t_gui_buffer *buffer,
|
||
3 years ago
|
struct t_account **account,
|
||
|
struct t_channel **channel);
|
||
3 years ago
|
|
||
3 years ago
|
char *buffer__typing_bar_cb(const void *pointer, void *data,
|
||
|
struct t_gui_bar_item *item,
|
||
|
struct t_gui_window *window,
|
||
|
struct t_gui_buffer *buffer,
|
||
|
struct t_hashtable *extra_info);
|
||
3 years ago
|
|
||
|
int buffer__nickcmp_cb(const void *pointer, void *data,
|
||
3 years ago
|
struct t_gui_buffer *buffer,
|
||
|
const char *nick1,
|
||
|
const char *nick2);
|
||
3 years ago
|
|
||
|
int buffer__close_cb(const void *pointer, void *data,
|
||
3 years ago
|
struct t_gui_buffer *buffer);
|