summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/CFKit/GUIDWizard.h
blob: e5a3a4c6ba5c663b818d61a23cd035afdbf68a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel

#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