blob: d99c1b3fc999fc16471b95eca3d759d78fc6c9c7 (
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
|
/***************************************************************
__ST_LOGTABLE.H
This file contains declarations for
LOGTABLE 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_LOGTABLE_H
#define __ST_LOGTABLE_H
#ifdef __cplusplus
extern "C" {
#endif
extern int _get_n_log_table ( int nb );
extern EMUSHORT *_get_logF_head_ptr ( int nb );
extern EMUSHORT *_get_logF_tail_ptr ( int nb );
#ifdef __cplusplus
} /* ... extern "C" */
#endif
#endif /* __ST_LOGTABLE_H */
|