#ifndef CAST_RECEIVER_CHANNEL_MESSAGE_UTIL_H_
#define CAST_RECEIVER_CHANNEL_MESSAGE_UTIL_H_
#include <string>
#include "cast/common/channel/message_util.h"
#include "cast/common/channel/proto/cast_channel.pb.h"
#include "platform/base/error.h"
namespace openscreen::cast {
ErrorOr<proto::CastMessage> CreateAppAvailableResponse(
int request_id,
const std::string& sender_id,
const std::string& app_id);
ErrorOr<proto::CastMessage> CreateAppUnavailableResponse(
int request_id,
const std::string& sender_id,
const std::string& app_id);
}
#endif