blob: b9270b322dbce095c3285a993d3bd3e1e1acabf6 [file] [log] [blame]
#ifndef AOS_INIT_H_
#define AOS_INIT_H_
namespace aos {
// Initializes AOS.
void InitGoogle(int *argc, char ***argv);
// Returns true if we have been initialized. This is mostly here so
// ShmEventLoop can confirm the world was initialized before running.
bool IsInitialized();
// Marks the system as initialized. This is only meant to be used from
// init_for_rust. DO NOT call this from anywhere else, use InitGoogle
// instead.
void MarkInitialized();
} // namespace aos
#endif // AOS_INIT_H_