anotherim-desktop/plugins/windows-notification/api/include/shortcutcreator.h

17 lines
249 B
C
Raw Normal View History

2021-03-26 11:22:55 +00:00
#pragma once
#include <glib.h>
#ifdef __cplusplus
#define EXTERN extern "C"
#define NOEXCEPT noexcept
#else
#define EXTERN
#define NOEXCEPT
2021-03-26 11:22:55 +00:00
#endif
EXTERN gboolean TryCreateShortcut(const gchar* aumid) NOEXCEPT;
2021-03-26 11:22:55 +00:00
#undef EXTERN
#undef NOEXCEPT