versadac  1
versadac - Scalable Recorder Firmware
mock.h
1 #ifndef MOCK_H
2 #define MOCK_H
3 
4 #ifdef WIN32
5 
6 #include "stdtypes.h"
7 #include "..\ui_interface.h"
8 
9 
10 #if __cplusplus
11 extern "C"
12 {
13 #endif
14 
15 
16 /* External references */
17 
18 
19 /* Function prototypes */
20 void ticks_to_utc(double ticks, double *utc_p);
21 void simulation_dre_add_pv (f32_status_t pv, uint8 i, double z_time_in_ms, bool first_point);
22 f32_status_t simulation_dre_get_pv (uint32 i, uint32 j, double * time_and_date_p);
23 double simulation_dre_get_time (uint32 i);
24 uint32 simulation_dre_get_number_of_samples (void);
25 double get_ticks(void);
26 double get_elapsed_ticks(void);
27 uint16 get_ticks_per_second(void);
28 uint16 get_ms_per_tick(void);
29 void increment_ticks (void);
30 void set_keys_pressed (uint8 z_keys);
31 void sysEurothermButtonScanGetPressed(bool *buttons);
32 
33 
34 #if __cplusplus
35 } /* extern "C" */
36 #endif
37 
38 
39 #endif /* WIN32 */
40 
41 #endif
Definition: stdtypes.h:116