Fixed extern C reference on Toast DLL function 'removeNotification'

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@39745 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Marcian Lytwyn 2016-05-12 19:26:10 +00:00
parent af7554719f
commit 2347032e72
3 changed files with 6 additions and 1 deletions

View file

@ -483,7 +483,12 @@ extern "C" EXPORT BOOL __cdecl sendNotification(HWND hWnd, HICON icon, SEND_NOTE
return FALSE;
}
EXPORT BOOL __cdecl removeNotification(HICON icon, REMOVE_NOTE_INFO_T *noteinfo)
extern "C" EXPORT BOOL __cdecl removeNotification(HICON icon, REMOVE_NOTE_INFO_T *noteinfo)
{
#if 1 //defined(DEBUG)
static char str[512];
sprintf_s(str, "%s:%d: note %p uniqueID: %d", __FUNCTION__, __LINE__, noteinfo, noteinfo->uniqueID);
OutputDebugStringA(str);
#endif
return FALSE;
}