mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 15:02:58 +00:00
19 lines
228 B
C
19 lines
228 B
C
|
#ifndef _FRAMELOG_PROTO_H_
|
||
|
#define _FRAMELOG_PROTO_H_
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int frame_log_on() ;
|
||
|
int frame_log_off() ;
|
||
|
int frame_log_set_max_samples(int num) ;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|