solanaceae_tox/solanaceae/tox_messages/msg_components.hpp
Green Sky e2c9880a15
major msg -> obj file transfer refactor
mostly done, some things are hacky or not done
2024-07-29 20:03:24 +02:00

22 lines
324 B
C++

#pragma once
#include <solanaceae/contact/contact_model3.hpp>
#include <cstdint>
namespace Message::Components {
struct ToxFriendMessageID {
// only exposed for the read reciept event
uint32_t id = 0u;
};
struct ToxGroupMessageID {
uint32_t id = 0u;
};
} // Message::Components
#include "./msg_components_id.inl"