13 lines
271 B
C++
13 lines
271 B
C++
#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
|