~ubuntu-branches/ubuntu/utopic/binkd/utopic-proposed

« back to all changes in this revision

Viewing changes to binlog.h

  • Committer: Bazaar Package Importer
  • Author(s): Marco d'Itri
  • Date: 2002-03-24 22:52:25 UTC
  • Revision ID: james.westby@ubuntu.com-20020324225225-7ru6itlapn03nl35
Tags: upstream-0.9.5a
ImportĀ upstreamĀ versionĀ 0.9.5a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*--------------------------------------------------------------------*/
 
2
/*       B i n L o g . h                                              */
 
3
/*                                                                    */
 
4
/*       Part of BinkD project                                        */
 
5
/*       Binary log interface                                         */
 
6
/*                                                                    */
 
7
/*       Definition file.                                             */
 
8
/*--------------------------------------------------------------------*/
 
9
/*
 
10
 * $Id: binlog.h,v 2.0 2001/01/10 12:12:37 gul Exp $
 
11
 *
 
12
 * $Log: binlog.h,v $
 
13
 * Revision 2.0  2001/01/10 12:12:37  gul
 
14
 * Binkd is under CVS again
 
15
 *
 
16
 *
 
17
 */
 
18
#ifndef __BINLOG_H__
 
19
#define __BINLOG_H__
 
20
 
 
21
void BinLogInit(void);
 
22
void BinLogDeInit(void);
 
23
#ifdef STATE_DEFINED
 
24
void BinLogStat (char *status, STATE *state);
 
25
#endif
 
26
 
 
27
#endif