mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 12:21:34 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39739 72102866-910b-0410-8b05-ffd578937521
25 lines
486 B
C++
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
|