blob: 3418a68f68c4c460c663d6b370a328a15c843c31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ========================================
Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
======================================== */
#ifndef CFKIT_GUIDWIZARD_H
#define CFKIT_GUIDWIZARD_H
#include <CFKit/GUIDWrapper.h>
#include <NeKit/Array.h>
#include <NeKit/Config.h>
#include <NeKit/ErrorOr.h>
#include <NeKit/InitializerList.h>
#include <NeKit/KString.h>
#include <NeKit/Ref.h>
#include <NeKit/Stream.h>
namespace Kernel::CF::XRN::Version1 {
Ref<GUIDSequence*> cf_make_sequence(const Array<UInt32, 10>& seq);
ErrorOr<Ref<KString>> cf_try_guid_to_string(Ref<GUIDSequence*>& guid);
} // namespace Kernel::CF::XRN::Version1
#endif
|