00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #if !defined(_GATREQUESTNOTIFIER_H_)
00020 #define _GATREQUESTNOTIFIER_H_
00021
00022
00023 #include "GATObject.h"
00024 #include "GATType.h"
00025 #include "GATRequestCPI.h"
00026
00027
00028
00029
00030 typedef GATResult (*GATRequestNotifierListener)(void *,
00031 struct GATRequestCPI_Instance_S const *, GATTable_const, void *);
00032
00033
00034 #ifdef __cplusplus
00035 extern "C" {
00036 #endif
00037
00038
00039 GATOBJECT_DECLARE_CONVERTERS(GATRequestNotifier);
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 GATRequestNotifier
00056 GATRequestNotifier_Create(void *adaptor_data,
00057 struct GATRequestCPI_Instance_S const *instance_data,
00058 GATRequestNotifierListener listener, void *context_data);
00059
00060
00061
00062
00063
00064
00065
00066
00067 void
00068 GATRequestNotifier_Destroy(GATRequestNotifier *object);
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083 GATResult
00084 GATRequestNotifier_Equals(GATRequestNotifier_const lhs,
00085 GATRequestNotifier_const rhs, GATBool *isequal);
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099 GATResult
00100 GATRequestNotifier_Clone(GATRequestNotifier_const object,
00101 GATRequestNotifier *new_object);
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113 GATType
00114 GATRequestNotifier_GetType(GATRequestNotifier_const object);
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128 GATResult
00129 GATRequestNotifier_GetInterface(GATRequestNotifier_const object,
00130 GATInterface iftype, void const **ifp);
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143 GATResult
00144 GATRequestNotifier_Respond(GATRequestNotifier_const notifier, GATTable table);
00145
00146 #ifdef __cplusplus
00147 }
00148 #endif
00149
00150 #endif
00151