19 lines
314 B
C++
19 lines
314 B
C++
/* pvType.h */
|
|
#ifndef PVTYPE_H
|
|
#define PVTYPE_H
|
|
|
|
namespace epics { namespace pvData {
|
|
|
|
typedef signed char int8;
|
|
typedef short int16;
|
|
typedef int int32;
|
|
typedef long long int64;
|
|
typedef unsigned int uint32;
|
|
typedef unsigned long long uint64;
|
|
|
|
}}
|
|
#endif /* PVTYPE_H */
|
|
|
|
|
|
|