diff options
author | Lennart Poettering <lennart@poettering.net> | 2006-02-22 18:54:21 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2006-02-22 18:54:21 +0000 |
commit | a99e46dd0b146d7f3d0c57821ccc26ead6b01f65 (patch) | |
tree | 871846b8db4c5818f2092c9dc8cd4cab6ffeebe4 /src/polyp/def.h | |
parent | f62b66ae41ad9ae9c89c1aba3e55aa466fbe42df (diff) |
rework parameter validity checking in protocol-native server side
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@563 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polyp/def.h')
-rw-r--r-- | src/polyp/def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/polyp/def.h b/src/polyp/def.h index 2ce1bd0c..0d095e9a 100644 --- a/src/polyp/def.h +++ b/src/polyp/def.h @@ -139,7 +139,8 @@ typedef enum pa_subscription_mask { PA_SUBSCRIPTION_MASK_CLIENT = 32, /**< Client events */ PA_SUBSCRIPTION_MASK_SAMPLE_CACHE = 64, /**< Sample cache events */ PA_SUBSCRIPTION_MASK_SERVER = 128, /**< Other global server changes. \since 0.4 */ - PA_SUBSCRIPTION_MASK_AUTOLOAD = 256 /**< Autoload table events. \since 0.5 */ + PA_SUBSCRIPTION_MASK_AUTOLOAD = 256, /**< Autoload table events. \since 0.5 */ + PA_SUBSCRIPTION_MASK_ALL = 511 /**< Catch all events \since 0.8 */ } pa_subscription_mask_t; /** Subscription event types, as used by pa_context_subscribe() */ |