cmMessenger: Pass title inside a metadata structure

This commit is contained in:
Marius Messerschmidt
2021-05-08 22:30:35 +02:00
committed by Brad King
parent 82fd8b6ba3
commit bceb8e2ed2
9 changed files with 50 additions and 19 deletions
+8
View File
@@ -0,0 +1,8 @@
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
struct cmMessageMetadata
{
const char* title = nullptr;
};