diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-24 01:08:40 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-24 01:08:40 +0100 |
commit | 093f7d0810b608a398d850b1f3a7661c1a129d25 (patch) | |
tree | eb4e00b88388478a0c95e516a8b448c85367970e /API-C.md | |
parent | 9c0782ddaec7d83539d86eb8a283c7cb8135acf4 (diff) | |
download | unit-wasm-093f7d0810b608a398d850b1f3a7661c1a129d25.tar.gz unit-wasm-093f7d0810b608a398d850b1f3a7661c1a129d25.tar.bz2 |
libunit-wasm: Put LUW_SRB_FLAGS_ALL in the enum
No reason why this needed to be a separate #define.
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'API-C.md')
-rw-r--r-- | API-C.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -117,9 +117,10 @@ typedef enum { LUW_SRB_APPEND = 0x01, LUW_SRB_ALLOC = 0x02, LUW_SRB_FULL_SIZE = 0x04, + + LUW_SRB_FLAGS_ALL = (LUW_SRB_NONE|LUW_SRB_APPEND|LUW_SRB_ALLOC| + LUW_SRB_FULL_SIZE) } luw_srb_flags_t; -#define LUW_SRB_FLAGS_ALL \ - (LUW_SRB_NONE|LUW_SRB_APPEND|LUW_SRB_ALLOC|LUW_SRB_FULL_SIZE ``` ## Structs |