diff options
-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 |