Reverted large read change - pass -o max_read=32768 to fuse instead.
[usmb.git] / version.h
blob23e776292660b03d05a66da4cebd83c4f2235011
1 /* usmb - mount SMB shares via FUSE and Samba
2 * Copyright (C) 2006 Geoff Johnstone
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef VERSION_H
20 #define VERSION_H
22 #include <stdio.h>
24 #define USMB_VERSION 0x20060519
26 // a - alpha, b - beta, p - pre-release, s - stable
27 #define USMB_VERSION_STATUS 'a'
29 void show_about (FILE *fp);
30 void show_version (FILE *fp);
32 #endif