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

17 lines
249 B
C

#pragma once
#include <glib.h>
#ifdef __cplusplus
#define EXTERN extern "C"
#define NOEXCEPT noexcept
#else
#define EXTERN
#define NOEXCEPT
#endif
EXTERN gboolean TryCreateShortcut(const gchar* aumid) NOEXCEPT;
#undef EXTERN
#undef NOEXCEPT