@@ -27,6 +27,8 @@ extern "C" {
27
27
# define udaGetBatchAPIWithHost udaGetBatchAPIWithHostFat
28
28
#endif
29
29
30
+ LIBRARY_API void udaLoadConfig (const char * config_name );
31
+
30
32
LIBRARY_API int udaGetAPI (const char * data_object , const char * data_source );
31
33
32
34
LIBRARY_API int udaGetBatchAPI (const char * * uda_signals , const char * * sources , int count , int * handles );
@@ -108,12 +110,10 @@ LIBRARY_API void udaFreePutDataBlock(PUTDATA_BLOCK*);
108
110
109
111
LIBRARY_API LOGMALLOCLIST * udaGetLogMallocList (int handle );
110
112
111
- LIBRARY_API USERDEFINEDTYPE * udaGetUserDefinedType (const int handle );
113
+ LIBRARY_API USERDEFINEDTYPE * udaGetUserDefinedType (int handle );
112
114
113
115
LIBRARY_API USERDEFINEDTYPELIST * udaGetUserDefinedTypeList (int handle );
114
116
115
- #define UDA_NUM_CLIENT_THREADS 30
116
-
117
117
LIBRARY_API void udaSetPrivateFlag (unsigned int flag );
118
118
119
119
LIBRARY_API void udaResetPrivateFlag (unsigned int flag );
@@ -148,8 +148,6 @@ LIBRARY_API void udaPutServerHost(const char* host);
148
148
149
149
LIBRARY_API void udaPutServerPort (int port );
150
150
151
- LIBRARY_API int udaGetErrorCode (int handle );
152
-
153
151
LIBRARY_API const char * udaGetErrorMsg (int handle );
154
152
155
153
LIBRARY_API int udaGetSourceStatus (int handle );
@@ -188,8 +186,6 @@ LIBRARY_API int udaGetDataTypeId(const char* type);
188
186
189
187
LIBRARY_API int udaGetDataTypeSize (int type );
190
188
191
- LIBRARY_API void udaGetErrorModel (int handle , int * model , int * param_n , float * params );
192
-
193
189
LIBRARY_API int udaGetErrorAsymmetry (int handle );
194
190
195
191
LIBRARY_API int udaGetErrorModelId (const char * model );
@@ -202,8 +198,6 @@ LIBRARY_API void udaSetSyntheticData(int handle, char* data);
202
198
203
199
LIBRARY_API void udaSetSyntheticDimData (int handle , int n_dim , char * data );
204
200
205
- LIBRARY_API char * udaGetSyntheticData (int handle );
206
-
207
201
LIBRARY_API char * udaGetData (int handle );
208
202
209
203
LIBRARY_API char * udaGetDataErrLo (int handle );
@@ -234,15 +228,15 @@ LIBRARY_API char* udaGetAsymmetricError(int handle, bool above);
234
228
235
229
LIBRARY_API char * udaGetError (int handle );
236
230
237
- LIBRARY_API void udaGetDoubleData (int handle , double * fp );
231
+ LIBRARY_API void udaGetDoubleData (int handle , double * data );
238
232
239
- LIBRARY_API void udaGetFloatData (int handle , float * fp );
233
+ LIBRARY_API void udaGetFloatData (int handle , float * data );
240
234
241
235
LIBRARY_API void udaGetGenericData (int handle , void * data );
242
236
243
- LIBRARY_API void udaGetFloatAsymmetricError (int handle , bool above , float * fp );
237
+ LIBRARY_API void udaGetFloatAsymmetricError (int handle , bool above , float * data );
244
238
245
- LIBRARY_API void udaGetFloatError (int handle , float * fp );
239
+ LIBRARY_API void udaGetFloatError (int handle , float * data );
246
240
247
241
LIBRARY_API const char * udaGetDataLabel (int handle );
248
242
@@ -266,8 +260,6 @@ LIBRARY_API int udaGetDimErrorAsymmetry(int handle, int n_dim);
266
260
267
261
LIBRARY_API void udaGetDimErrorModel (int handle , int n_dim , int * model , int * param_n , float * params );
268
262
269
- LIBRARY_API char * udaGetSyntheticDimData (int handle , int n_dim );
270
-
271
263
LIBRARY_API char * udaGetDimData (int handle , int n_dim );
272
264
273
265
LIBRARY_API const char * udaGetDimLabel (int handle , int n_dim );
@@ -278,39 +270,29 @@ LIBRARY_API void udaGetDimLabelTdi(int handle, int n_dim, char* label);
278
270
279
271
LIBRARY_API void udaGetDimUnitsTdi (int handle , int n_dim , char * units );
280
272
281
- LIBRARY_API void udaGetDoubleDimData (int handle , int n_dim , double * fp );
273
+ LIBRARY_API void udaGetDoubleDimData (int handle , int n_dim , double * data );
282
274
283
- LIBRARY_API void udaGetFloatDimData (int handle , int n_dim , float * fp );
275
+ LIBRARY_API void udaGetFloatDimData (int handle , int n_dim , float * data );
284
276
285
277
LIBRARY_API void udaGetGenericDimData (int handle , int n_dim , void * data );
286
278
287
279
LIBRARY_API char * udaGetDimAsymmetricError (int handle , int n_dim , bool above );
288
280
289
281
LIBRARY_API char * udaGetDimError (int handle , int n_dim );
290
282
291
- LIBRARY_API void udaGetFloatDimAsymmetricError (int handle , int n_dim , bool above , float * fp );
283
+ LIBRARY_API void udaGetFloatDimAsymmetricError (int handle , int n_dim , bool above , float * data );
292
284
293
- LIBRARY_API void udaGetFloatDimError (int handle , int n_dim , float * fp );
285
+ LIBRARY_API void udaGetFloatDimError (int handle , int n_dim , float * data );
294
286
295
287
LIBRARY_API int udaDataCheckSum (const char * data , int data_n , int type );
296
288
297
289
LIBRARY_API int udaGetDataCheckSum (int handle );
298
290
299
291
LIBRARY_API int udaGetDimDataCheckSum (int handle , int n_dim );
300
292
301
- LIBRARY_API int udaGetThreadLastHandle ();
302
-
303
- LIBRARY_API void udaPutThreadLastHandle (int handle );
304
-
305
- LIBRARY_API void udaLockThread ();
306
-
307
- LIBRARY_API void udaUnlockThread ();
308
-
309
- LIBRARY_API int udaGetMaxThreadCount ();
310
-
311
- LIBRARY_API int udaSetDataTree (const int handle );
293
+ LIBRARY_API int udaSetDataTree (int handle );
312
294
313
- LIBRARY_API NTREE * udaGetDataTree (const int handle );
295
+ LIBRARY_API NTREE * udaGetDataTree (int handle );
314
296
315
297
#ifdef __cplusplus
316
298
}
0 commit comments