Files
iZo/include/izo/Notifications.hpp

13 lines
271 B
C++
Raw Permalink Normal View History

#pragma once
#include <string>
#include <string_view>
namespace izo {
// Shows a non-blocking desktop notification.
bool ShowNotification(std::string_view title, std::string_view message,
std::string* errorMessage = nullptr);
} // namespace izo