From e36f2bd45800557fa9be80e820f78e3a471af836 Mon Sep 17 00:00:00 2001 From: nedko Date: Mon, 13 Oct 2008 15:53:25 +0000 Subject: [PATCH] Use uint32_t instead of bool in driver interface (to match current approach to bools in the driver interface) git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2987 0c269be4-1314-0410-8aa9-9f06e86f4224 --- common/driver_interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/driver_interface.h b/common/driver_interface.h index ada2dfc7..6a46169c 100644 --- a/common/driver_interface.h +++ b/common/driver_interface.h @@ -62,7 +62,7 @@ extern "C" } jack_driver_param_value_enum_t; typedef struct { - bool range; /**< if true - constraint is a range (min-max), if false - it is an enumeration */ + uint32_t range; /**< if not 0 - constraint is a range (min-max), if zero - it is an enumeration */ union { struct {