File: show.h

package info (click to toggle)
hybserv 1.9.2-4
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 2,848 kB
  • ctags: 1,854
  • sloc: ansic: 37,037; sh: 3,167; makefile: 337
file content (32 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * show.h
 * Hybserv2 Services by Hybserv2 team
 *
 * $Id: show.h 1349 2005-11-29 11:26:46Z kreator $
 */

#ifndef INCLUDED_show_h
#define INCLUDED_show_h

#include "stdinc.h"
#include "config.h"

#define  SHOW_HELP        0x000001 /* -h/-? */
#define  SHOW_TOTALCOUNT  0x000002 /* -n */
#define  SHOW_FILE        0x000004 /* -f file */
#define  SHOW_DETAIL      0x000008 /* display specific nickname(s) */

extern char *Filename;
extern int ncidx;

#ifdef NICKSERVICES

void ShowNicknames(int, char **);

#ifdef CHANNELSERVICES
void ShowChannels(int, char **);
#endif /* CHANNELSERVICES */

#endif /* NICKSERVICES */

#endif /* INCLUDED_show_h */