mirror of https://github.com/M2Team/NanaZip.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
486 B
25 lines
486 B
/*
|
|
* PROJECT: NanaZip
|
|
* FILE: NanaZip.UI.h
|
|
* PURPOSE: Definition for NanaZip Modern UI Shared Infrastructures
|
|
*
|
|
* LICENSE: The MIT License
|
|
*
|
|
* MAINTAINER: MouriNaruto (Kenji.Mouri@outlook.com)
|
|
*/
|
|
|
|
#ifndef NANAZIP_UI
|
|
#define NANAZIP_UI
|
|
|
|
#include <Mile.Helpers.CppBase.h>
|
|
#include <Mile.Helpers.CppWinRT.h>
|
|
|
|
namespace NanaZip::UI
|
|
{
|
|
winrt::handle ShowAboutDialog(
|
|
_In_ HWND ParentWindowHandle);
|
|
|
|
void SpecialCommandHandler();
|
|
}
|
|
|
|
#endif // !NANAZIP_UI
|