aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/winapi/resource.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/winapi/resource.hpp')
-rw-r--r--include/winapi/resource.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/winapi/resource.hpp b/include/winapi/resource.hpp
index 2f77d3e..8b6e41b 100644
--- a/include/winapi/resource.hpp
+++ b/include/winapi/resource.hpp
@@ -11,6 +11,7 @@
namespace winapi {
+/** @brief Resources embedded in a PE (Portable Executable). */
struct Resource {
// This is just a pointer to static data.
@@ -18,6 +19,7 @@ struct Resource {
Resource(const void* data, std::size_t nb) : data{data}, nb{nb} {}
+ /** Extract resource data into a Buffer instance. */
Buffer copy() const { return {data, nb}; }
const void* data = nullptr;