SNOOPerToCSV/Inc/Global_Variables.hpp

15 lines
325 B
C++

#ifndef __GLOBAL_VARIABLES_HPP__
#define __GLOBAL_VARIABLES_HPP__
#include "Type_Descriptions.hpp"
// 文件列表
extern file_node *file_list_head;
// 值列表
extern value_node *value_list_head;
// 类型列表
extern format_list_node *format_list_head;
// 起始时间戳
extern double time_begin;
#endif