2016-10-21 15:54:48 +02:00
|
|
|
/* declarations of builtin command list - automatically generated, do not edit */
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "px4_tasks.h" // px4_main_t
|
|
|
|
|
#include <map>
|
2019-08-09 15:10:09 +02:00
|
|
|
#include <string>
|
2016-10-21 15:54:48 +02:00
|
|
|
|
|
|
|
|
// Maps an app name to it's function.
|
|
|
|
|
typedef std::map<std::string, px4_main_t> apps_map_type;
|
|
|
|
|
|
|
|
|
|
// Initialize an apps map.
|
2016-10-27 19:20:07 +02:00
|
|
|
__EXPORT void init_app_map(apps_map_type &apps);
|
2016-10-21 15:54:48 +02:00
|
|
|
|
|
|
|
|
// List an apps map.
|
2016-10-27 19:20:07 +02:00
|
|
|
__EXPORT void list_builtins(apps_map_type &apps);
|