~darkmoon/+junk/darkstat-pkg

« back to all changes in this revision

Viewing changes to src/www.h

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2004-06-11 23:18:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040611231807-n6inlmb4cs4yyi84
Tags: upstream-2.6
Import upstream version 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* darkstat: a network traffic analyzer
 
3
 * (c) 2001-2003, Emil Mikulic.
 
4
 */
 
5
 
 
6
#ifndef __WWW_H
 
7
#define __WWW_H
 
8
 
 
9
#include <pthread.h>
 
10
 
 
11
void www_main(void *);
 
12
void www_shutdown(void);
 
13
 
 
14
#endif
 
15