blob: 85c45cd2b217c9c65fd67d320a5b86ef3de214f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/***************************************************************
__ST_SERVICE.H
This file contains declarations for
SERVICE constants operations.
PART OF : MPU - library .
USAGE : Internal only .
NOTE : Include "libmpu.h" before this FILE .
Copyright (C) 2000 - 2024 by Andrew V.Kosteltsev.
All Rights Reserved.
***************************************************************/
#ifndef __ST_SERVICE_H
#define __ST_SERVICE_H
#ifdef __cplusplus
extern "C" {
#endif
extern EMUSHORT *_get_m_ln2hi_ptr ( int nb );
extern EMUSHORT *_get_m_ln2lo_ptr ( int nb );
extern EMUSHORT *_get_m_ln_huge_ptr ( int nb );
extern EMUSHORT *_get_m_ln_tiny_ptr ( int nb );
extern EMUSHORT *_get_m_athfhi_ptr ( int nb );
extern EMUSHORT *_get_m_athflo_ptr ( int nb );
extern EMUSHORT *_get_m_at1fhi_ptr ( int nb );
extern EMUSHORT *_get_m_at1flo_ptr ( int nb );
extern EMUSHORT *_get_m_39_16_ptr ( int nb );
extern EMUSHORT *_get_m_1_16_ptr ( int nb );
extern EMUSHORT *_get_m_thovfl_ptr ( int nb );
#ifdef __cplusplus
} /* ... extern "C" */
#endif
#endif /* __ST_SERVICE_H */
|