mirror of
https://github.com/nasa/trick.git
synced 2025-01-24 21:36:56 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
31 lines
594 B
C
31 lines
594 B
C
|
|
#ifndef REALTIMESYNC_PROTO_H
|
|
#define REALTIMESYNC_PROTO_H
|
|
|
|
#ifdef __cplusplus
|
|
#include "sim_services/Clock/include/Clock.hh"
|
|
#include "sim_services/Timer/include/Timer.hh"
|
|
int real_time_change_clock(Trick::Clock * in_clock ) ;
|
|
int real_time_change_timer(Trick::Timer * in_sleep_timer ) ;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int real_time_enable() ;
|
|
int real_time_disable() ;
|
|
int real_time_restart(long long ref_time ) ;
|
|
int is_real_time() ;
|
|
const char * real_time_clock_get_name() ;
|
|
int real_time_set_rt_clock_ratio(double in_clock_ratio) ;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|