[go: up one dir, main page]

File: ctcp.h

package info (click to toggle)
irssi-text 0.8.4-3.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,048 kB
  • ctags: 5,670
  • sloc: ansic: 51,220; sh: 8,913; perl: 1,076; makefile: 1,017
file content (14 lines) | stat: -rw-r--r-- 344 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __CTCP_H
#define __CTCP_H

/* Register/unregister CTCP command, so it shows in CTCP CLIENTINFO */
void ctcp_register(const char *name);
void ctcp_unregister(const char *name);

/* Send CTCP reply with flood protection */
void ctcp_send_reply(SERVER_REC *server, const char *data);

void ctcp_init(void);
void ctcp_deinit(void);

#endif