2021-03-26 11:22:55 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <array>
|
|
|
|
#include <optional>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
std::optional<std::wstring> GetCurrentModulePath();
|
|
|
|
std::optional<std::wstring> GetShortcutPath();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
gboolean SupportsModernNotifications();
|
2021-02-18 09:24:53 +00:00
|
|
|
gboolean SetAppModelID(const gchar* aumid);
|
2021-03-26 11:22:55 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|