TODO netlogon_user_flags_ntlmv2_enabled
[wireshark-sm.git] / epan / dissectors / corba-idl / gias / cb.idl
blob90da87fef296d72c69349cfa76b3e31e27a835c9
1 #ifndef CB_IDL
2 #define CB_IDL
4 //***************************************************************
5 //* APPROVED via RFC N01-0268 on 6 August 2001
6 //***************************************************************
9 //***************************************************************
10 //* interface GIAS::Callback
11 //*
12 //* Description: General callback interface
13 //*
14 //* NOTE: The Callback interface is implemented on the
15 //* "client" side to allow "servers" to notify clients of
16 //* completion of requests.
17 //*
18 //* NOTE: Callback module is now compiled as a separate IDL file.
19 //* This will be changed in GIAS 3.3
20 //***************************************************************
21 #include "uco.idl"
23 module CB
25 interface Callback
27 void notify (in UCO::State theState, in UCO::RequestDescription description)
28 raises ( UCO::InvalidInputParameter, UCO::ProcessingFault, UCO::SystemFault);
30 void release ()
31 raises (UCO::ProcessingFault, UCO::SystemFault);
34 #endif