blob: fa9b87e34c71e5d42d304a8568343b32d78c79c1 (
plain)
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
|
/**
* version.h
* Protocol version.
*
* Matej Pfajfar <mp292@cam.ac.uk>
*/
/*
* Changes :
* $Log$
* Revision 1.1 2002/06/26 22:45:50 arma
* Initial revision
*
* Revision 1.3 2002/04/02 14:27:11 badbytes
* Final finishes.
*
* Revision 1.2 2001/12/18 10:37:47 badbytes
* Header files now only apply if they were not previously included from somewhere else.
*
* Revision 1.1 2001/12/18 09:12:05 badbytes
* Defines VERSION to hold the current protocol version.
*
*/
#ifndef __VERSION_H
#define VERSION 2
#define __VERSION_H
#endif
|