From: Stefan Metzmacher Date: Fri, 24 Nov 2023 15:38:06 +0000 (+0100) Subject: witness.idl: make some types public in order to be used elsewhere X-Git-Tag: talloc-2.4.2~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=290b0b04ae41b835f864bba02b1320693ef199d3;p=thirdparty%2Fsamba.git witness.idl: make some types public in order to be used elsewhere Signed-off-by: Stefan Metzmacher Reviewed-by: Günther Deschner Reviewed-by: Andreas Schneider --- diff --git a/librpc/idl/witness.idl b/librpc/idl/witness.idl index 792297cd8ff..99a2a23aee3 100644 --- a/librpc/idl/witness.idl +++ b/librpc/idl/witness.idl @@ -13,7 +13,7 @@ import "misc.idl"; ] interface witness { - typedef [v1_enum] enum { + typedef [v1_enum,public] enum { WITNESS_V1 = 0x00010001, WITNESS_V2 = 0x00020000, WITNESS_UNSPECIFIED_VERSION = 0xFFFFFFFF @@ -135,7 +135,7 @@ interface witness /*****************/ /* Function 0x04 */ - typedef [bitmap32bit] bitmap { + typedef [bitmap32bit,public] bitmap { WITNESS_REGISTER_NONE = 0x00, WITNESS_REGISTER_IP_NOTIFICATION = 0x01 } witness_RegisterEx_flags;