1
0

add more handshake output

This commit is contained in:
2026-01-10 20:02:50 +08:00
parent a8e109b603
commit 2379a23477
8 changed files with 62 additions and 20 deletions

View File

@@ -1,5 +1,6 @@
#pragma once
#include "math.hpp"
#include "char_types.hpp"
#include <map>
#include <functional>
@@ -29,7 +30,7 @@ namespace basalt::shared::anime_loader {
};
struct AnimeLoaderConfig {
char_types::BSString filename; ///< The file to be loaded by loader.
};
enum class AnimeLoaderStatus {

View File

@@ -1,10 +1,11 @@
#pragma once
#include "guid.hpp"
#include <cinttypes>
namespace basalt::shared::deliver {
struct DeliverConfig {
guid::Guid engine; ///< The GUID of render engine.
std::uint32_t device; ///< The selected device if possible.
};
enum class DeliverStatus {

View File

@@ -1,5 +1,6 @@
#pragma once
#include "math.hpp"
#include "char_types.hpp"
#include <vector>
#include <string>
@@ -22,7 +23,7 @@ namespace basalt::shared::object_loader {
};
struct ObjectLoaderConfig {
std::string filename;
char_types::BSString filename;
};
enum class ObjectLoaderStatus {