trick/trick_source/sim_services/RealtimeSync/include/realtimesync_proto.h
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
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.
2015-03-23 16:03:14 -05:00

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