libs-back/Source/win32/MSUserNotifications/MSUserNotificationAPI.h
Marcian Lytwyn 58ca6b5c8e Add MSUserNotifications to Source/win32 directory to support notifications on windows
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39739 72102866-910b-0410-8b05-ffd578937521
2016-05-11 20:46:04 +00:00

25 lines
486 B
C++

#pragma once
#include <string>
#if defined(__cplusplus)
extern "C" { // Only if you are using C++ rather than C
#endif
typedef struct _SEND_NOTE_INFO
{
const char *uuidString;
const char *title;
const char *informativeText;
HICON contentIcon;
const char *appIconPath;
} SEND_NOTE_INFO_T, *SEND_NOTE_INFO_PTR;
typedef struct _REMOVE_NOTE_INFO
{
UINT uniqueID;
} REMOVE_NOTE_INFO_T, *REMOVE_NOTE_INFO_PTR;
#if defined(__cplusplus)
}
#endif