2021-02-21 23:13:23 +00:00
|
|
|
#ifndef __WINRT_GLIB_2_H__
|
|
|
|
#define __WINRT_GLIB_2_H__
|
2021-02-21 20:03:24 +00:00
|
|
|
|
2021-02-26 11:29:48 +00:00
|
|
|
#if !defined(WINRT_GLIB_H_INSIDE) && !defined(WINRT_GLIB_COMPILATION)
|
|
|
|
#error "Only <winrt-glib.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "winrt-enums.h"
|
|
|
|
|
2021-02-21 20:03:24 +00:00
|
|
|
#ifdef __cplusplus
|
2021-03-20 03:15:29 +00:00
|
|
|
#define EXTERN extern "C"
|
|
|
|
#define NOEXCEPT noexcept
|
|
|
|
#else
|
|
|
|
#define EXTERN
|
|
|
|
#define NOEXCEPT
|
2021-02-21 20:03:24 +00:00
|
|
|
#endif
|
|
|
|
|
2021-03-20 14:30:22 +00:00
|
|
|
EXTERN gboolean winrt_InitApartment() NOEXCEPT;
|
2021-03-20 03:15:29 +00:00
|
|
|
EXTERN char* winrt_windows_ui_notifications_toast_notification_manager_GetTemplateContent(winrtWindowsUINotificationsToastTemplateType type) NOEXCEPT;
|
2021-02-21 20:03:24 +00:00
|
|
|
|
2021-03-20 03:15:29 +00:00
|
|
|
#undef EXTERN
|
|
|
|
#undef NOEXCEPT
|
2021-02-21 20:03:24 +00:00
|
|
|
|
2021-03-20 03:15:29 +00:00
|
|
|
#endif // __WINRT_GLIB_2_H__
|