Browse Source

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
tags/1.90
nedko 17 years ago
parent
commit
e36f2bd458
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/driver_interface.h

+ 1
- 1
common/driver_interface.h View File

@@ -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 {


Loading…
Cancel
Save