mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 21:27:54 +00:00
fccf32093b
* Clock empty args to void * command_line func empty args to void * DataRecord func empty args to void * debug_pause func empty args to void * echojobs func empty args to void * ExternalApplication func empty args to void * FrameLog func empty args to void * MasterSlave func empty args to void * MonteCarlo func empty args to void * outdllist func proto empty args to void * sie func empty args to void * SimTime func empty args to void * UnitTest func empty args to void * var_server func empty args to void * wcs func empty args to void
19 lines
222 B
C
19 lines
222 B
C
#ifndef FRAMELOG_PROTO_H
|
|
#define FRAMELOG_PROTO_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int frame_log_on(void) ;
|
|
int frame_log_off(void) ;
|
|
int frame_log_set_max_samples(int num) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|