mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
21 lines
235 B
C
21 lines
235 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
#include "Protocol.hpp"
|
||
|
|
|
||
|
|
namespace App {
|
||
|
|
|
||
|
|
void NewSettings(Protocol::SweepSettings s);
|
||
|
|
void SetManual(Protocol::ManualControl m);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
void App_Start();
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|