diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-11-06 21:21:06 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-11-06 21:21:06 +0000 |
commit | 4aa91d68179f533679edf1ab69405d47ace09ec4 (patch) | |
tree | 72e3c5b748b41a8d0b04cb3c534d192d03e366ef | |
parent | 97f8e42015cdefa311e734856e4f66323dc521cd (diff) |
added release major and minor version
svn path=/trunk/externals/hcs/hid/; revision=2228
-rw-r--r-- | hid.c | 3 | ||||
-rw-r--r-- | hid.h | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -185,7 +185,8 @@ static void *hid_new(t_float f) DEBUG(post("hid_new");); post("/=========================== [hid] ===========================\\"); - post("[hid] %s, written by Hans-Christoph Steiner <hans@eds.org>",version); + post("[hid] %d.%d, written by Hans-Christoph Steiner <hans@eds.org>", + HID_MAJOR_VERSION, HID_MINOR_VERSION); #if !defined(__linux__) && !defined(__APPLE__) error(" !! WARNING !! WARNING !! WARNING !! WARNING !! WARNING !! WARNING !!"); error(" This is a dummy, since this object only works GNU/Linux and MacOS X!"); @@ -11,7 +11,10 @@ */ #include "input_arrays.h" -static char *version = "$Revision: 1.7 $"; +#define HID_MAJOR_VERSION 0 +#define HID_MINOR_VERSION 1 + +static char *version = "$Revision: 1.8 $"; /*------------------------------------------------------------------------------ * CLASS DEF |