satdump/src-core/init.h

12 lines
253 B
C
Raw Normal View History

2021-03-22 18:53:09 +01:00
#pragma once
2022-05-07 17:06:56 +02:00
#include <string>
2022-05-12 15:24:25 -07:00
#include "dll_export.h"
2022-05-07 17:06:56 +02:00
2022-03-10 19:56:37 +01:00
namespace satdump
{
2022-05-12 15:24:25 -07:00
SATDUMP_DLL extern std::string user_path;
2022-09-11 19:15:24 +02:00
SATDUMP_DLL extern std::string tle_file_override;
2023-01-23 14:23:09 +01:00
SATDUMP_DLL extern bool tle_do_update_on_init;
2022-03-10 19:56:37 +01:00
void initSatdump();
}