App.h 474 B

1234567891011121314
  1. #pragma once
  2. #include "App.xaml.g.h"
  3. namespace winrt::Maple_App::implementation
  4. {
  5. struct App : AppT<App>
  6. {
  7. App();
  8. void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs const&);
  9. fire_and_forget OnSuspending(IInspectable const&, Windows::ApplicationModel::SuspendingEventArgs const&);
  10. void OnNavigationFailed(IInspectable const&, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs const&);
  11. };
  12. }