From 863dcbfa06cfcd4eecba7559c03080321b9a8a91 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 6 Nov 2006 22:54:49 +0000 Subject: r19588: Use include and import statements rather than depends() and helper(). (This used to be commit 347ae9628202ca4de4318ef8156999239aad9192) --- source4/librpc/idl/nbt.idl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'source4/librpc/idl/nbt.idl') diff --git a/source4/librpc/idl/nbt.idl b/source4/librpc/idl/nbt.idl index 4c5a8a83f7..829589f3b0 100644 --- a/source4/librpc/idl/nbt.idl +++ b/source4/librpc/idl/nbt.idl @@ -8,10 +8,9 @@ encoding if it doesn't work out */ -[ - depends(security,svcctl), - helper("libcli/nbt/nbtname.h") -] interface nbt +import "security.idl", "svcctl.idl"; + +interface nbt { const int NBT_NAME_SERVICE_PORT = 137; const int NBT_DGRAM_SERVICE_PORT = 138; @@ -697,3 +696,5 @@ [switch_is(opcode)] nbt_browse_payload payload; } nbt_browse_packet; } + +include "libcli/nbt/nbtname.h"; -- cgit