UI.h 280 B

123456789101112
  1. #pragma once
  2. namespace winrt::Maple_App::implementation
  3. {
  4. struct UI
  5. {
  6. static void NotifyUser(hstring msg, hstring title);
  7. static void NotifyUser(char const* msg, hstring title);
  8. static void NotifyException(std::wstring_view context);
  9. };
  10. }