EPICS Base  7.0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
net_convert.h
1 /*************************************************************************\
2 * Copyright (c) 2002 The University of Chicago, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * SPDX-License-Identifier: EPICS
7 * EPICS BASE is distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 /*
11  *
12  * Author: J. Hill
13  *
14  */
15 
16 #ifndef INC_net_convert_H
17 #define INC_net_convert_H
18 
19 #include "db_access.h"
20 #include "libCaAPI.h"
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 typedef unsigned long arrayElementCount;
27 
28 LIBCA_API int caNetConvert (
29  unsigned type, const void *pSrc, void *pDest,
30  int hton, arrayElementCount count );
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif /* ifndef INC_net_convert_H */