mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
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:
parent
af7554719f
commit
2347032e72
3 changed files with 6 additions and 1 deletions
Binary file not shown.
Binary file not shown.
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue