aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/winapi/resource.hpp
blob: 2f77d3e908718c5935acd4f3e732ec8069ec05c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "winapi-common" project.
// For details, see https://github.com/egor-tensin/winapi-common.
// Distributed under the MIT License.

#pragma once

#include "buffer.hpp"

#include <cstddef>

namespace winapi {

struct Resource {
    // This is just a pointer to static data.

    Resource() = default;

    Resource(const void* data, std::size_t nb) : data{data}, nb{nb} {}

    Buffer copy() const { return {data, nb}; }

    const void* data = nullptr;
    std::size_t nb = 0;
};

} // namespace winapi