mirror of
https://github.com/emtee40/NanaZip
synced 2026-04-26 00:34:54 +02:00
20 lines
272 B
C++
20 lines
272 B
C++
#include "pch.h"
|
|
|
|
#include "App.h"
|
|
|
|
#include <Mile.Xaml.h>
|
|
|
|
namespace winrt::NanaZip::Modern::implementation
|
|
{
|
|
App::App()
|
|
{
|
|
::MileXamlGlobalInitialize();
|
|
}
|
|
|
|
void App::Close()
|
|
{
|
|
Exit();
|
|
::MileXamlGlobalUninitialize();
|
|
}
|
|
}
|