12345678910111213141516171819202122232425262728293031 |
-
- #pragma once
- #include "App.g.h"
- namespace SDLPal
- {
-
-
-
- ref class App sealed
- {
- protected:
- virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) override;
- internal:
- App();
- property bool LastCrashed;
- private:
- void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e);
- void OnNavigationFailed(Platform::Object ^sender, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^e);
- };
- }
- extern HANDLE g_eventHandle;
|