extremetuxracer/src/depot.h

14 lines
297 B
C++

#ifndef DEPOT_H
#define DEPOT_H
#include "absl/status/statusor.h"
#include <optional>
#include <string>
void DepotInit(const std::string &argv0);
absl::StatusOr<std::string> DepotResolveFile(const std::string &depotpath);
std::string DepotMustResolveFile(const std::string &depotpath);
#endif