~benklop/+junk/lcdproc

« back to all changes in this revision

Viewing changes to server/commands/server_commands.h

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Tallon
  • Date: 2006-07-23 20:23:48 UTC
  • mfrom: (3 sarge)
  • mto: (3.1.1 sid) (1.1.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060723202348-3ngyais3pem8xyrm
Tags: upstream-0.5.0
ImportĀ upstreamĀ versionĀ 0.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * server_commands.h
 
3
 * This file is part of LCDd, the lcdproc server.
 
4
 *
 
5
 * This file is released under the GNU General Public License. Refer to the
 
6
 * COPYING file distributed with this package.
 
7
 *
 
8
 * Copyright (c) 1999, William Ferrell, Scott Scriven
 
9
 *               2002, Joris Robijn
 
10
 *
 
11
 */
 
12
 
 
13
#ifndef COMMANDS_SERVER_H
 
14
#define COMMANDS_SERVER_H
 
15
 
 
16
int output_func (Client * c, int argc, char **argv);
 
17
int test_func_func (Client * c, int argc, char **argv);
 
18
int noop_func (Client * c, int argc, char **argv);
 
19
int info_func (Client * c, int argc, char **argv);
 
20
int sleep_func (Client * c, int argc, char **argv);
 
21
 
 
22
#endif